;; The documentation of a method is stored with the method object. Thus, to retrieve the documentation, ;; we need to find the method object with given signature and call DOCUMENTATION on it, with the second ;; argument, the DOC-TYPE, set to T. ;; ;; NOTE: Load this file from SLIME *inferior-lisp* prompt ;; (in-package :symbolic-polynomial) (print (documentation (find-method #'->sexp '(:around) (mapcar #'find-class '(symbolic-poly))) t))