effect-tree
    Preparing search index...

    Variable setForestConst

    setForest: {
        flip: <A>(self: Tree<A>) => (forest: ForestOf<A>) => Branch<A>;
        <A>(self: Tree<A>, forest: readonly [Tree<A>, Tree<A>]): Branch<A>;
        <A>(forest: readonly [Tree<A>, Tree<A>]): (self: Tree<A>) => Branch<A>;
    } = ...

    Set the root node forest to a given forest of the same type.

    Type Declaration

    Underlying tree type.

    The tree being changed.

    New forest.

    A new tree where the forest has been replaced by the given forest.