close Warning: Can't synchronize with repository "(default)" (The repository directory has changed, you should resynchronize the repository with: trac-admin $ENV repository resync '(default)'). Look in the Trac log for more information.

source: branches/f4grobner/retrieving-method-documentation-example.lisp

Last change on this file was 4020, checked in by Marek Rychlik, 8 years ago

* empty log message *

File size: 442 bytes
Line 
1;; The documentation of a method is stored with the method object. Thus, to retrieve the documentation,
2;; we need to find the method object with given signature and call DOCUMENTATION on it, with the second
3;; argument, the DOC-TYPE, set to T.
4;;
5;; NOTE: Load this file from SLIME *inferior-lisp* prompt
6;;
7(in-package :symbolic-polynomial)
8(print (documentation (find-method #'->sexp '(:around) (mapcar #'find-class '(symbolic-poly))) t))
Note: See TracBrowser for help on using the repository browser.