effect-tree
    Preparing search index...

    Function mapEffect

    Map an effectful function over the tree in post-order: parent effect is run after children.

    At the key pre you will find a function that runs the effect in depth-first pre-order.

    Index

    Properties

    Properties

    pre: <A, B, E = unknown, R = never>(
        f: (a: A) => Effect<B, E, R>,
    ) => (self: Tree<A>) => Effect<Tree<B>, E, R>