inorder property

Iterable inorder

Returns an iterable of all values traversing the tree inorder. This is equivalent to an iterable of the sorted values in the tree.

If this tree supports equivalence classes, it returns an Iterable of List[T], otherwise an Iterable of T.

Returns an empty Iterable if the tree is empty.

Implementation

Iterable<dynamic> get inorder => new _InorderIterable.fromRoot(this._root!,
    withEquivalenceClasses: _withEquivalenceClasses);