Collection¶
all¶
fun boolean all(Predicate predicate)
TODO add description.
any¶
fun boolean any(Predicate predicate)
TODO add description.
average¶
fun double average()
TODO add description.
combinations¶
fun List combinations()
TODO add description.
count¶
fun int count(Predicate predicate)
TODO add description.
drop¶
fun List drop(int n)
TODO add description.
dropWhile¶
fun List dropWhile(Predicate predicate)
TODO add description.
find¶
fun Object find(Predicate predicate)
TODO add description.
findAll¶
fun List findAll(Predicate predicate)
TODO add description.
findLast¶
fun Object findLast(Predicate predicate)
TODO add description.
fold¶
fun Object fold(Object initial, BiFunction operation)
TODO add description.
groupBy¶
fun Map groupBy(Function keyExtractor)
TODO add description.
join¶
fun String join()
TODO add description.
join¶
fun String join(String separator)
TODO add description.
leftShift¶
fun Collection leftShift(Object value)
TODO add description.
map¶
fun List map(Function lambda1)
TODO add description.
mapToFloat¶
fun FloatList mapToFloat(ToFloatFunction lambda1)
TODO add description.
mapToInt¶
fun IntList mapToInt(ToIntFunction lambda1)
TODO add description.
mapToLong¶
fun LongList mapToLong(ToLongFunction lambda1)
TODO add description.
max¶
fun Comparable max()
TODO add description.
max¶
fun Object max(Function keyExtractor)
TODO add description.
min¶
fun Comparable min()
TODO add description.
min¶
fun Object min(Function keyExtractor)
TODO add description.
none¶
fun boolean none(Predicate predicate)
TODO add description.
reduce¶
fun Object reduce(BiFunction function)
TODO add description.
reduce¶
fun Object reduce(Object seed, BiFunction function)
TODO add description.
replace¶
fun boolean replace(Object element, Object replacement)
TODO add description.
sumBy¶
fun int sumBy(ToIntFunction mapper)
TODO add description.
sumByDouble¶
fun double sumByDouble(ToDoubleFunction mapper)
TODO add description.
sumByLong¶
fun long sumByLong(ToLongFunction mapper)
TODO add description.
take¶
fun List take(int n)
TODO add description.
takeWhile¶
fun List takeWhile(Predicate predicate)
TODO add description.
toCharList¶
fun CharList toCharList()
TODO add description.
toCharSet¶
fun CharSet toCharSet()
TODO add description.
toDoubleList¶
fun DoubleList toDoubleList()
TODO add description.
toDoubleSet¶
fun DoubleSet toDoubleSet()
TODO add description.
toFloatList¶
fun FloatList toFloatList()
TODO add description.
toFloatSet¶
fun FloatSet toFloatSet()
TODO add description.
toIntList¶
fun IntList toIntList()
TODO add description.
toIntSet¶
fun IntSet toIntSet()
TODO add description.
toList¶
fun List toList()
TODO add description.
toLongList¶
fun LongList toLongList()
TODO add description.
toLongSet¶
fun LongSet toLongSet()
TODO add description.
toSet¶
fun Set toSet()
TODO add description.
unique¶
fun Set unique()
TODO add description.
unique¶
fun List unique(Function keyExtractor)
TODO add description.