Uses of Class
com.googlecode.aviator.runtime.function.AbstractVariadicFunction
-
-
Uses of AbstractVariadicFunction in com.googlecode.aviator.runtime.function
Subclasses of AbstractVariadicFunction in com.googlecode.aviator.runtime.function Modifier and Type Class Description class
ClassMethodFunction
An aviator function wraps a class's static method.class
DispatchFunction
Dispatch function by argument arity.class
LambdaFunction
All lamabda function base class -
Uses of AbstractVariadicFunction in com.googlecode.aviator.runtime.function.internal
Subclasses of AbstractVariadicFunction in com.googlecode.aviator.runtime.function.internal Modifier and Type Class Description class
CatchHandlerFunction
__catch_handler(fun, exception) to create aCatchHandler
.class
NewInstanceFunction
__new(Class, ...args) to create an instance of special class with arguments.class
UnpackingArgsFunction
Unpacking arguments on runtimeclass
UseFunction
__use(pkg, ...names) function to implement import use -
Uses of AbstractVariadicFunction in com.googlecode.aviator.runtime.function.seq
Subclasses of AbstractVariadicFunction in com.googlecode.aviator.runtime.function.seq Modifier and Type Class Description class
SeqArrayFunction
seq.array(class, ...elements) function to create a new array of special type and elements.class
SeqCompsitePredFunFunction
Composite predicate function with && or ||class
SeqNewArrayFunction
seq.array_of(class, len) function to create a new array of special type and size.class
SeqNewListFunction
seq.list function to new an array list.class
SeqNewMapFunction
seq.map function to new a hash map.class
SeqNewSetFunction
seq.set function to new a hash set. -
Uses of AbstractVariadicFunction in com.googlecode.aviator.runtime.function.system
Subclasses of AbstractVariadicFunction in com.googlecode.aviator.runtime.function.system Modifier and Type Class Description class
AbstractMinMaxFunction
Abstract base class for system min/max function.class
ConstantFunction
Constant function to return the argument itself.class
MaxFunction
max function to find the largest element in arguments.class
MinFunction
min function to find the smallest element in arguments.class
TupleFunction
tuple(x,y,z, ...) function to return an object array.
-