compute-applicable-methods (original) (raw)
ANSI Common Lisp 7 Objects
7.7 Dictionary of Objects
7.7.32 compute-applicable-methods | Standard Generic Function |
---|
Syntax:
compute-applicable-methods generic-function function-arguments methods
Method Signatures:
compute-applicable-methods (generic-function standard-generic-function)
Arguments and Values:
generic-function - a generic function.
function-arguments - a list of arguments for the generic-function.
methods - a list of method objects.
Description:
Given a generic-function and a set of function-arguments, the functioncompute-applicable-methods returns the set of _methods_that are applicable for those arguments sorted according to precedence order. See Section 7.6.6 Method Selection and Combination.
Affected By:
See Also:
Section 7.6.6 Method Selection and Combination
Allegro CL Implementation Details:
None.