effect-tree
    Preparing search index...

    Variable setValueConst

    setValue: {
        <A, B, C>(value: B, self: TreeF.TreeF<A, C>): TreeF.TreeF<B, C>;
        <A, C>(self: TreeF.TreeF<A, C>): <B>(value: B) => TreeF.TreeF<B, C>;
    } = ...

    Set the value of a tree node.

    Type Declaration

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

    New underlying type for the tree.

    The child node type, also called the carrier type.

    A tree with the new value.