Uses of Class
org.pcollections.IntTree
-
-
Uses of IntTree in org.pcollections
Fields in org.pcollections declared as IntTree Modifier and Type Field Description (package private) static IntTree<java.lang.Object>
IntTree. EMPTYNODE
private IntTree<V>
IntTree. left
private IntTree<V>
IntTree. right
private IntTree<V>
IntTreePMap. root
Fields in org.pcollections with type parameters of type IntTree Modifier and Type Field Description private PStack<IntTree<V>>
IntTree.EntryIterator. stack
Methods in org.pcollections that return IntTree Modifier and Type Method Description (package private) IntTree<V>
IntTree. changeKeysAbove(long key, int delta)
Changes every key k>=key to k+delta.(package private) IntTree<V>
IntTree. changeKeysBelow(long key, int delta)
Changes every key k(package private) IntTree<V>
IntTree. minus(long key)
(package private) IntTree<V>
IntTree. plus(long key, V value)
private static <V> IntTree<V>
IntTree. rebalanced(long key, V value, IntTree<V> left, IntTree<V> right)
private IntTree<V>
IntTree. rebalanced(IntTree<V> newLeft, IntTree<V> newRight)
private IntTree<V>
IntTree. withKey(long newKey)
Methods in org.pcollections with parameters of type IntTree Modifier and Type Method Description private void
IntTree.EntryIterator. gotoMinOf(IntTree<V> node)
private static <V> IntTree<V>
IntTree. rebalanced(long key, V value, IntTree<V> left, IntTree<V> right)
private IntTree<V>
IntTree. rebalanced(IntTree<V> newLeft, IntTree<V> newRight)
private IntTreePMap<V>
IntTreePMap. withRoot(IntTree<V> root)
Constructors in org.pcollections with parameters of type IntTree Constructor Description EntryIterator(IntTree<V> root)
IntTree(long key, V value, IntTree<V> left, IntTree<V> right)
IntTreePMap(IntTree<V> root)
-