effect-tree - v1.0.36
    Preparing search index...

    Interface BranchF<A, C>

    A tree with non-empty list of child nodes.

    interface BranchF<A, C> {
        forest: readonly [C, C];
        node: A;
    }

    Type Parameters

    • A

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

    • C

      The child node type, also called the carrier type.

    Hierarchy (View Summary)

    Index

    Properties

    Properties

    forest: readonly [C, C]
    node: A