|   | 
 ANSI Common Lisp    7 Objects    7.7 Dictionary of Objects
 
| 7.7.15  method-qualifiers | 
Standard Generic Function | 
  
 - Syntax:
 - 
method-qualifiers
method
  
  qualifiers
  - Method Signatures:
 - 
method-qualifiers
(method standard-method)
  - Arguments and Values:
 - 
method - a method.
qualifiers - a proper list.
 
  - Description:
 - 
Returns a list of the qualifiers of the method.
  - Examples:
 - 
 (defmethod some-gf :before ((a integer)) a)
  #<STANDARD-METHOD SOME-GF (:BEFORE) (INTEGER) 42736540>
 (method-qualifiers *)   (:BEFORE)
 
  - See Also:
 - 
define-method-combination
  - Allegro CL Implementation Details:
 - 
 None.
  
 |