effect-tree
    Preparing search index...

    Function treeF

    Create a new TreeF from a node value and a possibly empty list of child nodes.

    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.

    Index

    Properties

    Properties

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