Uses of Class
org.organicdesign.fp.xform.Xform
-
Packages that use Xform Package Description 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 Xform in org.organicdesign.fp.xform
Fields in org.organicdesign.fp.xform declared as Xform Modifier and Type Field Description static @NotNull XformXform. EMPTYMethods in org.organicdesign.fp.xform that return Xform Modifier and Type Method Description @NotNull Xform<A>Xform. concat(@Nullable Iterable<? extends A> list)@NotNull Xform<A>Xform. drop(long n)The number of items to drop from the beginning of the output.@NotNull Xform<A>Xform. dropWhile(@NotNull Fn1<? super A,Boolean> predicate)The number of items to drop from the beginning of the output.static <T> @NotNull Xform<T>Xform. empty()@NotNull Xform<A>Xform. filter(@NotNull Fn1<? super A,Boolean> f)<B> @NotNull Xform<B>Xform. flatMap(@NotNull Fn1<? super A,Iterable<B>> f)<B> @NotNull Xform<B>Xform. map(@NotNull Fn1<? super A,? extends B> f)static <T> @NotNull Xform<T>Xform. of(@Nullable Iterable<? extends T> list)Static factory methods@NotNull Xform<A>Xform. precat(@Nullable Iterable<? extends A> list)@NotNull Xform<A>Xform. take(long numItems)@NotNull Xform<A>Xform. takeWhile(@NotNull Fn1<? super A,Boolean> f)
-