isCallable
isCallable(s_function) =>t/nil
Description
Checks if a function is defined or is autoloadable from a context.
Arguments
Value Returned
|
The specified function is not defined or is not autoloadable. |
Examples
isCallable( 'car)
=> t
procedure( myFunction( x ) x+1)
isCallable('myFunction)
=> t
Related Topics
Function and Program Structure
Return to top