
Introduction Issues
SBCL
Combinators CGFs Alt. MCs
Perfs
Conclusion
Orthogonality
Short combination example
(defgeneric details (human)
(:method-combination append :most-specific-last)
(:method append ((human human)) ...)
(:method append ((employee employee)) ...))
I
Problems
I
Method qualication required
Combination change impractical
I
Except for the option
Inconsistent
I
No :before or :after methods
No good reason
I
Workaround: long method combinations
Method Combinators / ELS 2018 – Didier Verna 5/27