|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||
public interface Function
A Jaskell function object. All jaskell funcions evaluate to Function object. Implement this interface to import function into jaskell runtime.
Zephyr Business Solutions Corp.
| Method Summary | |
|---|---|
java.lang.Object |
apply(java.lang.Object[] args)
Call the function with an array of arguments. |
java.lang.Object |
apply(java.lang.Object[] args,
int from,
int len)
Call the function with arguments stored in array args. |
java.lang.Object |
f(java.lang.Object arg)
Call the function with one argument. |
| Method Detail |
|---|
java.lang.Object f(java.lang.Object arg)
arg - the argument.
java.lang.Object apply(java.lang.Object[] args)
args - the arguments.
java.lang.Object apply(java.lang.Object[] args,
int from,
int len)
args - the array.from - the starting index of the range.len - the length of the range.
|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||