AbstractSeqMinMaxFunction |
Base class for min/max function.
|
SeqAddAllFunction |
seq.add function to add all elements in other sequence into this one.
|
SeqAddFunction |
seq.add function to add an element into seq.
|
SeqArrayFunction |
seq.array(class, ...elements) function to create a new array of special type and elements.
|
SeqCollectorFunction |
seq.collector(seq) to create a collector for this sequence.
|
SeqCollectorRawFunction |
seq.raw(collector) to retrieve the raw container of collector.
|
SeqCompsitePredFunFunction |
Composite predicate function with && or ||
|
SeqContainsKeyFunction |
seq.contains_key(map,key) function to check if seq(should be map) contains the key.
|
SeqCountFunction |
count(seq) to get seq's size
|
SeqEveryFunction |
Returns true if fun.call(x) is logical true for every x in sequence, else false.
|
SeqFilterFunction |
filter(seq,predicate) to filter seq by predicate
|
SeqGetFunction |
seq.get function to retrieve a element by index(for list) or key(for map).
|
SeqIncludeFunction |
include(seq,obj) function to check if seq contains object
|
SeqIntoFunction |
into(to_coll, from_coll) Adds all elements in from_coll into to_coll by seq.add(to_coll, element)
and return the to_coll.
|
SeqKeysFunction |
seq.keys(map) to retrieve keys sequence of the map.
|
SeqMakePredicateFunFunction |
Function to make predicate for filter function
|
SeqMapEntryFunction |
seq.entry(key, value) function to create a Map.Entry instance.
|
SeqMapEntryFunction.MapEntry |
|
SeqMapFunction |
map(col,fun) function to iterate seq with function
|
SeqMaxFunction |
seq.max function to find the largest element in sequence.
|
SeqMinFunction |
seq.min function to find the smallest element in sequence.
|
SeqNewArrayFunction |
seq.array_of(class, len) function to create a new array of special type and size.
|
SeqNewListFunction |
seq.list function to new an array list.
|
SeqNewMapFunction |
seq.map function to new a hash map.
|
SeqNewSetFunction |
seq.set function to new a hash set.
|
SeqNotAnyFunction |
Returns false if fun.call(x) is logical true for any x in sequence, else true.
|
SeqPredicateFunction |
A predicate function
|
SeqPutFunction |
seq.put function to set a element value by index(for list) or key(for map).
|
SeqReduceFunction |
reduce(col,fun,init) function to reduce seq with function and a initial value value
|
SeqRemoveFunction |
seq.add function to add an element into seq.
|
SeqReverseFunction |
reverse(seq) to reverse an array or list in place.
|
SeqSomeFunction |
Returns the first logical true value of fun.call(x) for any x in sequence, else returns nil.
|
SeqSortFunction |
sort(list, [comparator]) function to sort a java.util.List or array,return a sorted duplicate
object
|
SeqValsFunction |
seq.vals(map) to retrieve values sequence of the map.
|
SeqZipmapFunction |
seq.collector(seq) to create a collector for this sequence.
|