Uses of Interface
org.organicdesign.fp.collections.MutList
-
Packages that use MutList 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 MutList in org.organicdesign.fp
Methods in org.organicdesign.fp that return MutList Modifier and Type Method Description static <T> @NotNull MutList<T>StaticImports. mutableVec(T @Nullable ... items)Returns a MutVector of the given items. -
Uses of MutList in org.organicdesign.fp.collections
Classes in org.organicdesign.fp.collections that implement MutList Modifier and Type Class Description static classPersistentVector.MutVector<F>static classRrbTree.MutRrbt<E>Mutable version of anRrbTree.Methods in org.organicdesign.fp.collections that return MutList Modifier and Type Method Description @NotNull MutList<E>MutList. append(E e)Adds the item to the end of this list (mutating it in place).@NotNull MutList<F>PersistentVector.MutVector. append(F val)default @NotNull MutList<E>MutList. appendSome(@NotNull Fn0<? extends @NotNull Option<E>> supplier)If supplier returns Some, append the additional item to the end of this MutList (modifying it in place).@NotNull MutList<F>PersistentVector.MutVector. appendSome(@NotNull Fn0<? extends @NotNull Option<F>> supplier)If supplier returns Some, append the additional item to the end of this MutList (modifying it in place).default @NotNull MutList<E>MutList. concat(@Nullable Iterable<? extends E> es)Efficiently adds items to the end of this ImList.@NotNull MutList<E>ImList. mutable()Returns a mutable list (builder)@NotNull MutList<E>MutList. replace(int idx, E e)Replace the item at the given index.@NotNull MutList<F>PersistentVector.MutVector. replace(int idx, F e)default @NotNull MutList<E>MutList. reverse()Returns a reversed copy of this list. -
Uses of MutList in org.organicdesign.fp.xform
Methods in org.organicdesign.fp.xform that return MutList Modifier and Type Method Description default @NotNull MutList<T>Transformable. toMutList()Realize a mutable list.
-