| Class | Description |
|---|---|
| AbstractSeqMinMaxFunction |
Base class for min/max function.
|
| SeqAddFunction |
seq.add function to add an element into seq.
|
| SeqCompsitePredFunFunction |
Composite predicate function with && or ||
|
| 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
|
| SeqMakePredicateFunFunction |
Function to make predicate for filter function
|
| 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.
|
| 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
|
| 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.
|
| SeqSomeFunction |
Returns the first logical true value of fun.call(x) for any x in sequence, else returns nil.
|
| SeqSortFunction |
sort(list) function to sort java.util.List or array,return a sorted duplicate object
|
| Enum | Description |
|---|---|
| SeqCompsitePredFunFunction.LogicOp |
Copyright © 2019. All rights reserved.