Uses of Class
io.vavr.collection.Tree.Node
Packages that use Tree.Node
Package
Description
Beside
API the io.vavr package contains core types like (Checked)Functions and Tuples.Purely functional collections based on Traversable.
-
Uses of Tree.Node in io.vavr
-
Uses of Tree.Node in io.vavr.collection
Methods in io.vavr.collection that return Tree.NodeModifier and TypeMethodDescriptionstatic <T> Tree.Node<T> Tree.of(T value) Returns a new Node containing the given value and having no children.static <T> Tree.Node<T> Returns a new Node containing the given value and having the given children.static <T> Tree.Node<T> Returns a new Node containing the given value and having the given children.static <T> Tree.Node<T> Recursively builds a non-emptyTree, starting with the givenseedvalue and proceeding in depth-first order.Methods in io.vavr.collection that return types with arguments of type Tree.NodeModifier and TypeMethodDescriptionTree.build(Iterable<? extends T> source, Function<? super T, ? extends ID> idMapper, Function<? super T, ? extends ID> parentMapper) Build aListwith roots ofTreefrom flat source.Tree.Empty.getChildren()Tree.getChildren()Returns the children of this tree.Tree.Node.getChildren()Tree.traverse()Traverses this tree inTree.Order.PRE_ORDER.Tree.traverse(Tree.Order order) Traverses this tree in a specific order.Methods in io.vavr.collection with parameters of type Tree.NodeModifier and TypeMethodDescriptionstatic <T> Tree.Node<T> Returns a new Node containing the given value and having the given children.Method parameters in io.vavr.collection with type arguments of type Tree.NodeModifier and TypeMethodDescriptionstatic <T> Tree.Node<T> Returns a new Node containing the given value and having the given children.Constructor parameters in io.vavr.collection with type arguments of type Tree.Node