ixfx
    Preparing search index...

    Type Alias TraversableTree<TValue>

    Traversable Tree

    type TraversableTree<TValue> = {
        children(): IterableIterator<TraversableTree<TValue>>;
        getIdentity(): any;
        getParent(): undefined | TraversableTree<TValue>;
        getValue(): TValue;
    }

    Type Parameters

    • TValue

    Implemented by

    Index

    Methods

    • Object reference that acts as the identity of the node

      Returns any

    • Value of node

      Returns TValue