Marco Antoniotti <[EMAIL PROTECTED]> writes:
> Since we are at it...
>
> Could we add an extension function like
>
> FIND-METHOD-COMBINATION (symbol &optional errorp) => Method Combination
>
> that would return a method combination object? (Like FIND-CLASS).
AMOP defines a FIND-METHOD-COMBINATION, but it's admittedly pretty
fuzzily defined. In PCL, and in Allegro, it can be used to get at a
method combination given its name:
CMUCL:
(mop:find-method-combination #'mop:find-method-combination 'and nil)
=> #<Method-Combination and (:most-specific-first) {480D0E3D}>
Allegro:
(mop:find-method-combination #'mop:find-method-combination 'and nil)
=> #<excl::short-method-combination @ #x104b00ea>