getGFproxy
getGFproxy(s_gfName) =>U_classObj/nil
Description
Returns a proxy instance from the specified generic function object
Arguments
|
Specifies a symbol that denotes the name of a generic function object |
Value Returned
Examples
getGFproxy('niTest); niTest is the name of the generic function
=> stdobj@0x83c0018
classOf(getGFproxy('niTest))
=> class:niGF
classOf(getGFproxy('printself)) ;; class of standard generic function (printself)
=> class:ilGenericFunction ;; default
getGFproxy('abc)
=> nil ;; non-existing generic function
Related Topics
Return to top