isGeneric
isGeneric(g_function) =>t/ nil
Description
Checks if the specified symbol (function name) or funobj (function object) represents a generic SKILL++ function.
Arguments
Value Returned
|
The specified symbol (function name) or funobj (function object) is a generic SKILL++ function. |
|
|
The specified symbol (function name) or funobj (function object) is not a generic SKILL++ function. |
Examples
defgeneric(f1 (x y))
defun(f2 (x y) x + y)
isGeneric('f2)
=> nil
isGeneric('f1)
=> t
Related Topics
Return to top