Uses of Interface
com.jongsoft.lang.collection.Pipeline
-
Packages that use Pipeline Package Description com.jongsoft.lang.collection A purely functional based set of collection implementations based upon the Collection. -
-
Uses of Pipeline in com.jongsoft.lang.collection
Methods in com.jongsoft.lang.collection that return Pipeline Modifier and Type Method Description Pipeline<T>
Pipeline. filter(java.util.function.Predicate<T> predicate)
<U> Pipeline<U>
Pipeline. map(java.util.function.Function<T,U> mapper)
Pipeline<T>
List. pipeline()
Create a pipeline for the current list.Pipeline<T>
Pipeline. reject(java.util.function.Predicate<T> predicate)
Reject all values that match the provided predicate.
-