Function
Overview
A Function object has the ability to be invoked or spawned as a Future with a given set of arguments.
Fields
Statics
.bind
fn [F: Function](callback: F, receiver: Any) -> FBinds a Function with the given context receiver.
.call
fn [F: Function](callback: F, ...args: Any) -> AnyInvokes the callback function with the given arguments.
.apply
fn [F: Function](callback: F, args: List[Any]) -> AnyInvokes the callback function with the given arguments list.