-
Returns a fluent iterable whose iterators traverse first the elements of this fluent iterable,
followed by those of other
.
FluentIterableWrapper.filter(com.google.common.base.Predicate<? super E> predicate)
Returns the elements from this fluent iterable that satisfy a predicate.
Returns the elements from this fluent iterable that are instances of the supplied type.
Returns a fluent iterable that wraps iterable
, or iterable
itself if it
is already a FluentIterable
.
FluentIterableWrapper.transform(com.google.common.base.Function<? super E,T> function)
Returns a fluent iterable that applies function
to each element of this
fluent iterable.
Applies function
to each element of this fluent iterable and returns
a fluent iterable with the concatenated combination of results.