SE701:multiple-dispatch.lisp: Revision history

Jump to navigation Jump to search

Diff selection: Mark the radio buttons of the revisions to compare and hit enter or the button at the bottom.
Legend: (cur) = difference with latest revision, (prev) = difference with preceding revision, m = minor edit.

15 February 2008

  • curprev 19:3919:39, 15 February 2008Mark talk contribs 707 bytes +707 New page: ;; How CommonLisp multiple dispatch differs from Java's single dispatch (defclass a () ()) (defclass sub-a (a) ()) (defclass b () ()) (defclass sub-b (b) ()) (defgeneric foo (a b...