ixfx
    Preparing search index...

    Type Alias TraversableTree<TValue>

    Traversable Tree.

    Creatable from: Trees.FromObject.asDynamicTraversable: Create based on dynamic reading of an object Trees.TraversableTree: Create based on an Trees.TreeNode, a Trees.TraversableTree or an object (same as calling asDynamicTraversable). Use Trees.isTraversable to check if an object is this type.

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

    Type Parameters

    • TValue

    Implemented by

    Index

    Properties

    children: () => IterableIterator<TraversableTree<TValue>>

    Direct children of node

    getIdentity: () => any

    Object reference that acts as the identity of the node

    getParent: () => TraversableTree<TValue> | undefined

    Direct parent of node

    getValue: () => TValue

    Value of node