Package | Description |
---|---|
propel.core.functional.projections | |
propel.core.utils |
Modifier and Type | Method and Description |
---|---|
static <TFirst,TSecond> |
Tuples.pairFirstSelector()
Returns the first element of the pair
|
static <TFirst,TSecond> |
Tuples.pairSecondSelector()
Returns the second element of the pair
|
Modifier and Type | Method and Description |
---|---|
static <T> Pair<java.lang.Iterable<T>,java.lang.Iterable<T>> |
Linq.partition(java.lang.Iterable<T> values,
Predicates.Predicate1<? super T> predicate)
Partitions the given values based on a predicate.
|
static <T> Pair<T[],T[]> |
Linq.partition(T[] values,
Predicates.Predicate1<T> predicate)
Partitions the given values based on a predicate.
|
static <T,TResult1,TResult2> |
Linq.unzip(T[] values,
Functions.Function1<T,Pair<TResult1,TResult2>> func)
Performs the reverse operation to zip()
|
Modifier and Type | Method and Description |
---|---|
static <T,TResult1,TResult2> |
Linq.unzip(java.lang.Iterable<T> values,
Functions.Function1<? super T,Pair<TResult1,TResult2>> func)
Performs the reverse operation to zip()
|
Modifier and Type | Method and Description |
---|---|
static <T,TResult1,TResult2> |
Linq.unzip(java.lang.Iterable<T> values,
Functions.Function1<? super T,Pair<TResult1,TResult2>> func)
Performs the reverse operation to zip()
|
static <T,TResult1,TResult2> |
Linq.unzip(T[] values,
Functions.Function1<T,Pair<TResult1,TResult2>> func)
Performs the reverse operation to zip()
|