| Class | Description |
|---|---|
| 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
|
| 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
|
| 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
|
| 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.