effect-tree
    Preparing search index...

    Type Alias TreeF<A, C>

    TreeF: LeafF<A> | BranchF<A, C>

    The non-recursive tree type where the child type is left as open. Used by the recursion schemes. A tree is either a leaf or a branch.

    Type Parameters

    • A

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

    • C = unknown

      The child node type, also called the carrier type.