effect-tree
    Preparing search index...

    Variable appendAllConst

    appendAll: {
        <A>(self: Tree<A>, children: Tree<A>[]): Tree<A>;
        <A>(children: Tree<A>[]): (self: Tree<A>) => Tree<A>;
    } = ...

    Append a list of trees to the children of the root node. If self is a leaf, it is converted into a branch.

    Type Declaration

    Tree underlying type.

    The tree to modify.

    A non-empty list of trees to append to the tree.

    A new updated tree with the new nodes appended.