| Class | Description |
|---|---|
| AbstractSeqMinMaxFunction |
Base class for min/max function.
|
| 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.
|
| 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.
|
| SeqMakePredicateFunFunction |
Function to make predicate for filter function
|
| SeqMapEntryFunction |
seq.entry(key, value) function to create a Map.Entry instance.
|
| 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.
|
| 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 © 2022–2023. All rights reserved.