effect-tree
    Preparing search index...

    Variable withForestConst

    withForest: {
        <A, C>(forest: C[], value: A): TreeF.TreeF<A, C>;
        <A>(value: A): <C>(forest: C[]) => TreeF.TreeF<A, C>;
    } = ...

    A flipped version of treeF.

    Type Declaration

    The underlying type of the tree. For example, in a numeric tree it would be number.

    The child node type, also called the carrier type.