Class PriorityQueueBase.Node<T>
java.lang.Object
io.vavr.collection.PriorityQueueBase.Node<T>
- All Implemented Interfaces:
Serializable
- Enclosing class:
PriorityQueueBase
-
Field Summary
FieldsModifier and TypeFieldDescription(package private) final Seq<PriorityQueueBase.Node<T>> (package private) final int(package private) final Tprivate static final long -
Constructor Summary
ConstructorsModifierConstructorDescriptionprivateNode(T root, int rank, Seq<PriorityQueueBase.Node<T>> children) -
Method Summary
Modifier and TypeMethodDescription(package private) Seq<PriorityQueueBase.Node<T>> appendTo(Seq<PriorityQueueBase.Node<T>> forest) (package private) PriorityQueueBase.Node<T> link(Comparator<? super T> comparator, PriorityQueueBase.Node<T> tree) (package private) static <T> PriorityQueueBase.Node<T> of(T value, int rank, Seq<PriorityQueueBase.Node<T>> children) (package private) PriorityQueueBase.Node<T> skewLink(Comparator<? super T> comparator, PriorityQueueBase.Node<T> left, PriorityQueueBase.Node<T> right)
-
Field Details
-
serialVersionUID
private static final long serialVersionUID- See Also:
-
root
-
rank
final int rank -
children
-
-
Constructor Details
-
Node
-
-
Method Details
-
of
-
link
-
skewLink
PriorityQueueBase.Node<T> skewLink(Comparator<? super T> comparator, PriorityQueueBase.Node<T> left, PriorityQueueBase.Node<T> right) -
appendTo
-