ixfx
    Preparing search index...

    Type Alias SimplifiedNode<TValue>

    type SimplifiedNode<TValue> = {
        childrenStore: readonly SimplifiedNode<TValue>[];
        value: TValue | undefined;
    }

    Type Parameters

    • TValue
    Index

    Properties

    Properties

    childrenStore: readonly SimplifiedNode<TValue>[]

    Children nodes of this one

    value: TValue | undefined

    Value of node, or undefined if it has no value