Package | Description |
---|---|
propel.core.utils |
Modifier and Type | Method and Description |
---|---|
static <TSource,TAccumulate> |
Linq.aggregate(java.lang.Iterable<TSource> values,
TAccumulate seed,
Functions.Function2<TAccumulate,? super TSource,TAccumulate> function)
Applies an accumulator function over a sequence.
|
static <TSource,TAccumulate,TResult> |
Linq.aggregate(java.lang.Iterable<TSource> values,
TAccumulate seed,
Functions.Function2<TAccumulate,? super TSource,TAccumulate> function,
Functions.Function1<TAccumulate,TResult> resultSelector)
Applies an accumulator function over a sequence.
|
static <TSource,TAccumulate> |
Linq.aggregate(TSource[] values,
TAccumulate seed,
Functions.Function2<TAccumulate,? super TSource,TAccumulate> function)
Applies an accumulator function over a sequence.
|
static <TSource,TAccumulate,TResult> |
Linq.aggregate(TSource[] values,
TAccumulate seed,
Functions.Function2<TAccumulate,? super TSource,TAccumulate> function,
Functions.Function1<TAccumulate,TResult> resultSelector)
Applies an accumulator function over a sequence.
|
static <TOuter,TInner,TKey extends java.lang.Comparable<TKey>,TResult> |
Linq.join(java.lang.Iterable<TOuter> outerValues,
java.lang.Iterable<TInner> innerValues,
Functions.Function1<TOuter,TKey> outerKeySelector,
Functions.Function1<TInner,TKey> innerKeySelector,
Functions.Function2<TOuter,TInner,TResult> resultSelector)
Performs an inner join (more specifically an equi-join) over two sequences.
|
static <TOuter,TInner,TKey extends java.lang.Comparable<TKey>,TResult> |
Linq.join(TOuter[] outerValues,
TInner[] innerValues,
Functions.Function1<TOuter,TKey> outerKeySelector,
Functions.Function1<TInner,TKey> innerKeySelector,
Functions.Function2<TOuter,TInner,TResult> resultSelector)
Performs an inner join (more specifically an equi-join) over two sequences.
|
static <TFirst,TSecond,TResult> |
Linq.zip(java.lang.Iterable<TFirst> first,
java.lang.Iterable<TSecond> second,
Functions.Function2<TFirst,TSecond,TResult> function)
Merges two sequences by using the specified predicate function.
|
static <TFirst,TSecond,TResult> |
Linq.zip(TFirst[] first,
TSecond[] second,
Functions.Function2<TFirst,TSecond,TResult> function)
Merges two sequences by using the specified predicate function.
|