call
..Root.call
Invoke the callable object f with its remaining arguments as arguments and p as its parent.
Parameters: any p, Callable
f, any number of any variables
Return value: return value of calling f
NativeCallable
, Callable
call(Root, log, 1, 2);
Equivalent of Root.log(1, 2);
.