Uses of Interface
org.organicdesign.fp.collections.MutableList
-
Packages that use MutableList 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 MutableList in org.organicdesign.fp
Methods in org.organicdesign.fp that return MutableList Modifier and Type Method Description static <T> MutableList<T>StaticImports. mutableVec(T... items)Returns a MutableVector of the given items. -
Uses of MutableList in org.organicdesign.fp.collections
Classes in org.organicdesign.fp.collections that implement MutableList Modifier and Type Class Description static classPersistentVector.MutableVector<F>static classRrbTree.MutableRrbt<E>Mutable version of anRrbTree.Methods in org.organicdesign.fp.collections that return MutableList Modifier and Type Method Description MutableList<E>MutableList. append(E val)Adds one item to the end of the ImList.MutableList<F>PersistentVector.MutableVector. append(F val)default MutableList<E>MutableList. concat(java.lang.Iterable<? extends E> es)Efficiently adds items to the end of this ImList.MutableList<E>ImList. mutable()Returns a mutable list (builder)MutableList<E>MutableList. replace(int idx, E e)Replace the item at the given index.MutableList<F>PersistentVector.MutableVector. replace(int idx, F e)default MutableList<E>MutableList. reverse()Returns a reversed copy of this list. -
Uses of MutableList in org.organicdesign.fp.xform
Methods in org.organicdesign.fp.xform that return MutableList Modifier and Type Method Description default MutableList<T>Transformable. toMutableList()Realize a mutable list.
-