methods F -- produces a list of those methods associated with the
function or type F.
methods symbol ** -- produces a list of the methods
usable with the operator **.
methods (symbol **, X) -- produces a list of the
methods usable with the operator ** and a thing of
class X.
methods (X, Y) -- produces a list of the
methods usable with a thing of class X and a thing of class
Y.
This function operates by examining those types which are values of global symbols for keys which appear to be storing references to methods. Types which don't appear as values of global variables will not be examined, so perhaps not all methods will be found.
i1 : methods drop |
Ways to use methods :