Uses of Interface
org.organicdesign.fp.collections.MutableMap
-
Packages that use MutableMap Package Description org.organicdesign.fp A tiny data definition language for Java, in Java.org.organicdesign.fp.collections Type-safe versions of immutable collections (mostly from Clojure), plus unmodifiable and immutable collection interfaces that fit these collections into the java.util interfaces.org.organicdesign.fp.xform Immutable descriptions of data transformations (Transformable), and a highly efficient single-pass, short-circuiting implementation that carries out those transforms in a single pass (Xform). -
-
Uses of MutableMap in org.organicdesign.fp
Methods in org.organicdesign.fp that return MutableMap Modifier and Type Method Description static <K,V>
MutableMap<K,V>StaticImports. mutableMap(java.util.Map.Entry<K,V>... kvPairs)Returns a new MutableMap of the given keys and their paired values. -
Uses of MutableMap in org.organicdesign.fp.collections
Classes in org.organicdesign.fp.collections that implement MutableMap Modifier and Type Class Description static classPersistentHashMap.MutableHashMap<K,V>Methods in org.organicdesign.fp.collections that return MutableMap Modifier and Type Method Description default MutableMap<K,V>MutableMap. assoc(java.util.Map.Entry<K,V> entry)Returns a new map with an immutable copy of the given entry addedMutableMap<K,V>MutableMap. assoc(K key, V val)Returns a new map with the given key/value addedMutableMap<K,V>ImMap. mutable()Returns a mutable version of this mutable map.MutableMap<K,V>MutableMap. without(K key)Returns a new map with the given key/value removed -
Uses of MutableMap in org.organicdesign.fp.xform
Methods in org.organicdesign.fp.xform that return MutableMap Modifier and Type Method Description default <K,V>
MutableMap<K,V>Transformable. toMutableMap(Fn1<? super T,java.util.Map.Entry<K,V>> f1)Realize a mutable hash map.
-