Lisp CLOS Method Combination
The standard method combination involves four kinds of methods: Primary method It performs bulk of the work. :around methods are run before anything else. :before method is called before the primary method. :after method is called after the primary m ...