Zoe Gagnon
Zoe Gagnon

Reputation: 714

Are there documented, organized collections of libraries for Common Lisp?

I am a college student at a school that teaches mainly in Java. One of the strong points of Java, which I quite enjoy, is the large collection of libraries. What makes these libraries especially useful is the extensive documentation and organization presented via JavaDoc. Are there any library collections for Common Lisp which also have these qualities, and is there a tool similar to JavaDoc which would assist in the building, maintaining, or expanding of these libraries?

Upvotes: 8

Views: 622

Answers (9)

whoplisp
whoplisp

Reputation: 2518

Now there is quicklisp and it made everything so much easier! http://www.quicklisp.org/

Upvotes: 3

Pablo Fernandez
Pablo Fernandez

Reputation: 287460

If you are used to Java, you may give Clojure a chance and keep using the Java libraries you know.

Upvotes: 0

huaiyuan
huaiyuan

Reputation: 26539

I recommend clbuild, which contains a collection of quality libraries compiled by a group of experienced, discerning lisp programmers (as well as script to download and install those libraries).

If you want guidelines for writing highlevel/api documentation, I suggest you follow the examples set by Edi Weitz and others (e.g., see Hunchentoot, Vecto).

For lower level implementation documentation, I think the built-in docstring mechanism together with Slime's source navigation and autodoc facilities comprise the best existing environment for code exploration.

Upvotes: 2

Pierre Thierry
Pierre Thierry

Reputation: 5129

There are many available libraries for Common Lisp and many of them are thoroughly documented. JavaDoc, in my own experience (or any such tool like Doxygen for C++), is not a valuable tool to document a library but more to document its implementation.

So documentation is not a matter of tools here, but of will of the lib's author to write a decent manual. In this area, Common Lisp is like any other language: there are beautiful pieces of engineering with wonderful documentation, quick and dirty code without the slightest sign of documentation, as well as all possible combinations of code and documentation qualities...

All in all, I personnally found that Common Lisp libraries have a pretty high overall quality.

Upvotes: 1

fincomus
fincomus

Reputation: 246

Yes there are extensive, documented library collections at http://www.cl-user.net, http://www.cliki.net and http://clocc.sourceforge.net. As well as advanced 'asdf' or 'mk-defsystem' base infrastructures to use them.

Upvotes: 6

Matthias Benkard
Matthias Benkard

Reputation: 15759

No, there is no comprehensive, consistently documented library collection. The inexistence of such a thing is Common Lisp's biggest problem right now. If you're interested in helping the Lisp community, this may well be the thing to attack first.

Also, while there are various JavaDoc equivalents, there is no widely accepted quasi-standard as for Java.

Upvotes: 5

sanxiyn
sanxiyn

Reputation: 3706

Tinna is a Lisp documentation system that is comparable to JavaDoc.

Upvotes: 1

Marcin
Marcin

Reputation: 49846

Try cliki or common-lisp.net.

As to javadoc...you know about docstrings? If not, find out. Also find out about all the other self-documenting features.

It sounds like you haven't read the spec. Always read the spec, whatever you are doing.

Upvotes: 2

dsm
dsm

Reputation: 10403

Github contains a lot of lisp projects, not to mention Sourceforge

Upvotes: 2

Related Questions