Organizing code with CLOS



Do you guys generally put class definitions and generics in one file,
and defmethods in another? Or lump them all together?

.



Relevant Pages

  • Re: Organizing code with CLOS
    ... and defmethods in another? ... Or lump them all together? ... Typically I put the class definitions together in one file, ...
    (comp.lang.lisp)
  • Re: Organizing code with CLOS
    ... and defmethods in another? ... Or lump them all together? ... The separation into different defclass, defgeneric and defmethod forms allows you to organize your code according to the needs of your program, and not to the needs of your language. ...
    (comp.lang.lisp)