Arguments and Values:
name — A valid function name.
lambda-list — A message lambda-list.
option — A message option.
Description:
Like CLOS'
DEFGENERIC,DEFMESSAGEdeclares the basic blueprint for dispatch.
=> new-reply
Arguments and Values:
name — A valid message name.
qualifier — A reply qualifier.
specialized-lambda-list — A specialized reply lambda-list.
declaration — Function declarations.
documentation — A string, to be extracted as documentation.
form — A lisp form.
Description:
Like CLOS'
DEFMETHOD,DEFREPLYcreates a method-like object, specialized on the objects given in specialized-lambda-list. The code in form* will dispatch when given an appropriate set of arguments.