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

Re: Is there an example of a function that will



How about:

(defmethod subclasses ((c class))
  (remove-duplicates 
     (cons c (mapcan #'subclasses (class-direct-subclasses c)))))

I think this is from the Art-of-MOP book originally.