[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: Law of Good Style



    This one also obeys the law. Let's combine these using generic-labels

    (defmethod v ((p1 A) (p2 Z))
      (generic-labels ((v1 (:method ((p B)) (v2 (slot-value p 'c))))
    		   (v2 (:method ((p C)) (slot-value p 'd))))
        (v1 (slot-value p 'b))))
Was this -------------- ^ -- supposed to be p1?

dcm