static <T,E> E |
$.foldl(Iterable<T> iterable,
BiFunction<E,T,E> func,
E zeroElem) |
static <T,E> E |
$.foldr(Iterable<T> iterable,
BiFunction<E,T,E> func,
E zeroElem) |
static <T,E> E |
$.inject(Iterable<T> iterable,
BiFunction<E,T,E> func,
E zeroElem) |
<F> $.Chain<F> |
$.Chain.reduce(BiFunction<F,T,F> func,
F zeroElem) |
static <E> E |
$.reduce(int[] array,
BiFunction<E,? super Integer,E> func,
E zeroElem) |
static <T,E> E |
$.reduce(Iterable<T> iterable,
BiFunction<E,T,E> func,
E zeroElem) |
static <T,E> E |
$.reduce(T[] array,
BiFunction<E,T,E> func,
E zeroElem) |
<F> $.Chain<F> |
$.Chain.reduceRight(BiFunction<F,T,F> func,
F zeroElem) |
static <E> E |
$.reduceRight(int[] array,
BiFunction<E,? super Integer,E> func,
E zeroElem) |
static <T,E> E |
$.reduceRight(Iterable<T> iterable,
BiFunction<E,T,E> func,
E zeroElem) |
static <T,E> E |
$.reduceRight(T[] array,
BiFunction<E,T,E> func,
E zeroElem) |