AbstractMinMaxFunction |
Abstract base class for system min/max function.
|
AbstractMinMaxFunction.Op |
|
ComparatorFunction |
Returns an implementation of java.util.Comparator based upon pred function.
|
EvalFunction |
eval(script) , eval(script, bindings) and eval(script, bindings, cached) to execute a script with
current env or special bindings, default is in caching mode.
|
IsAFunction |
is_a(x, clazz) returns true when x is an intance of the class.
|
LoadFunction |
load('script.av') to load a script and retrieve it's exports.
|
MetaFunction |
meta(obj, [key]) function to return the meatadata of obj [with the key], returns null if ithere
is no metadata.
|
RequireFunction |
require('script.av') to load a script and retrieve it's exports, if it's required before, it will
return the exports directly.
|
SeqFunction |
seq(obj) function to cast a object into sequence, throw an runtime exception if fail.
|
WithMetaFunction |
with_meta(obj, key, value) function to add metadata key/value to obj, return the obj.
|
WithoutMetaFunction |
without_meta(obj, key) function to remove metadata by key from obj, return the obj.
|