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