| Modifier and Type | Method and Description |
|---|---|
$.Chain<T> |
$.chain() |
static $.Chain<Integer> |
$.chain(int[] array) |
static <T> $.Chain<T> |
$.chain(Iterable<T> iterable) |
static <T> $.Chain<T> |
$.chain(List<T> list) |
static <T> $.Chain<T> |
$.chain(T... array) |
$.Chain<List<T>> |
$.Chain.chunk(int size) |
$.Chain<T> |
$.Chain.compact() |
$.Chain<T> |
$.Chain.compact(T falsyValue) |
$.Chain<T> |
$.Chain.concat(List<T>... lists) |
$.Chain<Boolean> |
$.Chain.contains(T elem) |
<F> $.Chain<Map<F,Integer>> |
$.Chain.countBy(com.github.underscore.Function1<T,F> func) |
$.Chain<List<T>> |
$.Chain.createPermutationWithRepetition(int permutationLength) |
$.Chain<T> |
$.Chain.difference(List<T>... lists) |
$.Chain<T> |
$.Chain.distinct() |
<F> $.Chain<F> |
$.Chain.distinctBy(com.github.underscore.Function1<T,F> func) |
$.Chain<Boolean> |
$.Chain.every(com.github.underscore.Predicate<T> pred) |
$.Chain<T> |
$.Chain.filter(com.github.underscore.Predicate<T> pred) |
$.Chain<com.github.underscore.Optional<T>> |
$.Chain.find(com.github.underscore.Predicate<T> pred) |
$.Chain<com.github.underscore.Optional<T>> |
$.Chain.findLast(com.github.underscore.Predicate<T> pred) |
<E> $.Chain<com.github.underscore.Optional<T>> |
$.Chain.findWhere(List<com.github.underscore.Tuple<String,E>> properties) |
$.Chain<T> |
$.Chain.first() |
$.Chain<T> |
$.Chain.first(int n) |
$.Chain<T> |
$.Chain.firstOrNull() |
$.Chain<T> |
$.Chain.firstOrNull(com.github.underscore.Predicate<T> pred) |
$.Chain |
$.Chain.flatten() |
$.Chain<T> |
$.Chain.forEach(com.github.underscore.Block<T> func) |
$.Chain<T> |
$.Chain.forEachRight(com.github.underscore.Block<T> func) |
<F> $.Chain<Map<F,List<T>>> |
$.Chain.groupBy(com.github.underscore.Function1<T,F> func) |
$.Chain<Map<Object,List<T>>> |
$.Chain.indexBy(String property) |
$.Chain<T> |
$.Chain.initial() |
$.Chain<T> |
$.Chain.initial(int n) |
$.Chain<T> |
$.Chain.intersection(List<T>... lists) |
$.Chain<T> |
$.Chain.invoke(String methodName) |
$.Chain<T> |
$.Chain.invoke(String methodName,
List<Object> args) |
$.Chain<String> |
$.Chain.join() |
$.Chain<String> |
$.Chain.join(String separator) |
$.Chain<T> |
$.Chain.last() |
$.Chain<T> |
$.Chain.last(int n) |
$.Chain<T> |
$.Chain.lastOrNull() |
$.Chain<T> |
$.Chain.lastOrNull(com.github.underscore.Predicate<T> pred) |
$.Chain<T> |
$.Chain.limit(int size) |
<F> $.Chain<F> |
$.Chain.map(com.github.underscore.Function1<? super T,F> func) |
$.Chain<Comparable> |
$.Chain.max() |
<F extends Comparable<? super F>> |
$.Chain.max(com.github.underscore.Function1<T,F> func) |
$.Chain<Double> |
$.Chain.mean() |
$.Chain<Double> |
$.Chain.median() |
$.Chain<Comparable> |
$.Chain.min() |
<F extends Comparable<? super F>> |
$.Chain.min(com.github.underscore.Function1<T,F> func) |
$.Chain<Object> |
$.Chain.pluck(String propertyName) |
$.Chain<Integer> |
$.Chain.range(int stop) |
$.Chain<Integer> |
$.Chain.range(int start,
int stop) |
$.Chain<Integer> |
$.Chain.range(int start,
int stop,
int step) |
<F> $.Chain<F> |
$.Chain.reduce(com.github.underscore.FunctionAccum<F,T> func,
F zeroElem) |
<F> $.Chain<F> |
$.Chain.reduceRight(com.github.underscore.FunctionAccum<F,T> func,
F zeroElem) |
$.Chain<T> |
$.Chain.reject(com.github.underscore.Predicate<T> pred) |
$.Chain<T> |
$.Chain.rest() |
$.Chain<T> |
$.Chain.rest(int n) |
$.Chain<T> |
$.Chain.reverse() |
$.Chain<T> |
$.Chain.sample() |
$.Chain<T> |
$.Chain.sample(int howMany) |
$.Chain<T> |
$.Chain.shuffle() |
$.Chain<T> |
$.Chain.skip(int numberToSkip) |
$.Chain<T> |
$.Chain.slice(int start) |
$.Chain<T> |
$.Chain.slice(int start,
int end) |
$.Chain<Boolean> |
$.Chain.some(com.github.underscore.Predicate<T> pred) |
$.Chain<Comparable> |
$.Chain.sort() |
<F extends Comparable<? super F>> |
$.Chain.sortBy(com.github.underscore.Function1<T,F> func) |
<K> $.Chain<Map<K,Comparable>> |
$.Chain.sortBy(K key) |
<F extends Comparable<? super F>> |
$.Chain.sortWith(Comparator<F> comparator) |
<T extends Number> |
$.Chain.sum() |
<F extends Number> |
$.Chain.sum(com.github.underscore.Function1<T,F> func) |
$.Chain<T> |
$.Chain.tap(com.github.underscore.Block<T> func) |
<K,V> $.Chain<Map<K,V>> |
$.Chain.toMap() |
$.Chain<T> |
$.Chain.union(List<T>... lists) |
$.Chain<T> |
$.Chain.uniq() |
<F> $.Chain<F> |
$.Chain.uniq(com.github.underscore.Function1<T,F> func) |
<E> $.Chain<T> |
$.Chain.where(List<com.github.underscore.Tuple<String,E>> properties) |
Copyright © 2017. All rights reserved.