Uses of Interface
io.vavr.collection.HashArrayMappedTrie
-
Packages that use HashArrayMappedTrie Package Description io.vavr.collection Purely functional collections based on Traversable. -
-
Uses of HashArrayMappedTrie in io.vavr.collection
Classes in io.vavr.collection that implement HashArrayMappedTrie Modifier and Type Class Description static classHashArrayMappedTrieModule.AbstractNode<K,V>An abstract base class for nodes of a HAMT.static classHashArrayMappedTrieModule.ArrayNode<K,V>Representation of a HAMT array node.static classHashArrayMappedTrieModule.EmptyNode<K,V>The empty node.static classHashArrayMappedTrieModule.IndexedNode<K,V>Representation of a HAMT indexed node.static classHashArrayMappedTrieModule.LeafList<K,V>Representation of a HAMT leaf node with more than one element.static classHashArrayMappedTrieModule.LeafNode<K,V>Representation of a HAMT leaf.static classHashArrayMappedTrieModule.LeafSingleton<K,V>Representation of a HAMT leaf node with single element.Fields in io.vavr.collection declared as HashArrayMappedTrie Modifier and Type Field Description private HashArrayMappedTrie<T,T>HashSet.SerializationProxy. treeprivate HashArrayMappedTrie<T,T>HashSet. treeprivate HashArrayMappedTrie<K,V>HashMap. trieMethods in io.vavr.collection that return HashArrayMappedTrie Modifier and Type Method Description private static <T> HashArrayMappedTrie<T,T>HashSet. addAll(HashArrayMappedTrie<T,T> initial, java.lang.Iterable<? extends T> additional)static <K,V>
HashArrayMappedTrie<K,V>HashArrayMappedTrie. empty()HashArrayMappedTrie<K,V>HashArrayMappedTrie. put(K key, V value)HashArrayMappedTrie<K,V>HashArrayMappedTrieModule.AbstractNode. put(K key, V value)HashArrayMappedTrie<K,V>HashArrayMappedTrie. remove(K key)HashArrayMappedTrie<K,V>HashArrayMappedTrieModule.AbstractNode. remove(K key)Methods in io.vavr.collection with parameters of type HashArrayMappedTrie Modifier and Type Method Description private static <T> HashArrayMappedTrie<T,T>HashSet. addAll(HashArrayMappedTrie<T,T> initial, java.lang.Iterable<? extends T> additional)private static <K,V>
HashMap<K,V>HashMap. wrap(HashArrayMappedTrie<K,V> trie)Constructors in io.vavr.collection with parameters of type HashArrayMappedTrie Constructor Description HashMap(HashArrayMappedTrie<K,V> trie)HashSet(HashArrayMappedTrie<T,T> tree)SerializationProxy(HashArrayMappedTrie<T,T> tree)Constructor for the case of serialization, called byHashSet.writeReplace().
-