| Modifier and Type | Method and Description |
|---|---|
static <A> ITransducer<A,A> |
Fns.dropWhile(Predicate<A> p)
Creates a transducer that transforms a reducing function such that
it skips inputs as long as the provided predicate returns true.
|
static <A> ITransducer<A,A> |
Fns.filter(Predicate<A> p)
Creates a transducer that transforms a reducing function by applying a
predicate to each input and processing only those inputs for which the
predicate is true.
|
static <A> ITransducer<A,A> |
Fns.remove(Predicate<A> p)
Creates a transducer that transforms a reducing function by applying a
predicate to each input and not processing those inputs for which the
predicate is true.
|
static <A> ITransducer<A,A> |
Fns.takeWhile(Predicate<A> p)
Creates a transducer that transforms a reducing function such that
it processes inputs as long as the provided predicate returns true.
|
Copyright © 2014. All rights reserved.