Uses of Class
io.vavr.collection.HashArrayMappedTrieModule.LeafNode
-
Packages that use HashArrayMappedTrieModule.LeafNode Package Description io.vavr.collection Purely functional collections based on Traversable. -
-
Uses of HashArrayMappedTrieModule.LeafNode in io.vavr.collection
Subclasses of HashArrayMappedTrieModule.LeafNode in io.vavr.collection Modifier and Type Class Description static classHashArrayMappedTrieModule.LeafList<K,V>Representation of a HAMT leaf node with more than one element.static classHashArrayMappedTrieModule.LeafSingleton<K,V>Representation of a HAMT leaf node with single element.Fields in io.vavr.collection declared as HashArrayMappedTrieModule.LeafNode Modifier and Type Field Description private HashArrayMappedTrieModule.LeafNode<K,V>HashArrayMappedTrieModule.LeafList. tailMethods in io.vavr.collection that return HashArrayMappedTrieModule.LeafNode Modifier and Type Method Description protected HashArrayMappedTrieModule.LeafNode<K,V>HashArrayMappedTrieModule.LeafNodeIterator. getNext()Methods in io.vavr.collection that return types with arguments of type HashArrayMappedTrieModule.LeafNode Modifier and Type Method Description (package private) Iterator<HashArrayMappedTrieModule.LeafNode<K,V>>HashArrayMappedTrieModule.AbstractNode. nodes()Iterator<HashArrayMappedTrieModule.LeafNode<K,V>>HashArrayMappedTrieModule.EmptyNode. nodes()Iterator<HashArrayMappedTrieModule.LeafNode<K,V>>HashArrayMappedTrieModule.LeafList. nodes()Iterator<HashArrayMappedTrieModule.LeafNode<K,V>>HashArrayMappedTrieModule.LeafSingleton. nodes()Methods in io.vavr.collection with parameters of type HashArrayMappedTrieModule.LeafNode Modifier and Type Method Description (package private) static <K,V>
HashArrayMappedTrieModule.AbstractNode<K,V>HashArrayMappedTrieModule.LeafNode. mergeLeaves(int shift, HashArrayMappedTrieModule.LeafNode<K,V> leaf1, HashArrayMappedTrieModule.LeafSingleton<K,V> leaf2)private static <K,V>
HashArrayMappedTrieModule.AbstractNode<K,V>HashArrayMappedTrieModule.LeafList. mergeNodes(HashArrayMappedTrieModule.LeafNode<K,V> leaf1, HashArrayMappedTrieModule.LeafNode<K,V> leaf2)Constructors in io.vavr.collection with parameters of type HashArrayMappedTrieModule.LeafNode Constructor Description LeafList(int hash, K key, V value, HashArrayMappedTrieModule.LeafNode<K,V> tail)
-