File: README

package info (click to toggle)
acl2 8.5dfsg-5
  • links: PTS
  • area: main
  • in suites: bookworm
  • size: 991,452 kB
  • sloc: lisp: 15,567,759; javascript: 22,820; cpp: 13,929; ansic: 12,092; perl: 7,150; java: 4,405; xml: 3,884; makefile: 3,507; sh: 3,187; ruby: 2,633; ml: 763; python: 746; yacc: 723; awk: 295; csh: 186; php: 171; lex: 154; tcl: 49; asm: 23; haskell: 17
file content (59 lines) | stat: -rw-r--r-- 2,087 bytes parent folder | download | duplicates (7)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
CL-UTILITIES Collection
=======================

On Cliki.net <http://www.cliki.net/Common%20Lisp%20Utilities>, there
is a collection of Common Lisp Utilities, things that everybody writes
since they're not part of the official standard. There are some very
useful things there; the only problems are that they aren't
implemented as well as you'd like (some aren't implemented at all) and
they aren't conveniently packaged and maintained. It takes quite a bit
of work to carefully implement utilities for common use, commented
and documented, with error checking placed everywhere some dumb user
might make a mistake.

The CLRFI process <http://clrfi.alu.org/> is a lot better thought out,
and will probably produce better standards than informal discussion on
a Wiki, but it has one problem: at the time of this writing, it's not
doing anything yet. Until the CLRFI process gets going, I think that a
high-quality collection of the informal standards on Cliki is a
valuable thing to have. It's here, and it's called cl-utilities.

The home page is <http://common-lisp.net/project/cl-utilities/>.

Documentation
-------------

Right now, documentation is at
<http://www.cliki.net/Common%20Lisp%20Utilities>. There are a few
differences, though:

* The READ-DELIMITED function takes :start and :end keyword args.
* A WITH-GENSYMS function is provided for compatibility.
* COPY-ARRAY is not called SHALLOW-COPY-ARRAY.
* The ONCE-ONLY macro is included.

Installation
------------

To install cl-utilities, you'll need to do one of two things:

* Download cl-utilities into a place where asdf can find it, then
  load it via asdf. You will also need to get the split-sequence
  package, which cl-utilities depends on.

-or-

* Use asdf-install: (asdf-install:install :cl-utilities)

Feedback
--------

The current maintainer is Peter Scott. If you have questions, bugs,
comments, or contributions, please send them to the cl-utilities-devel
mailing list, <cl-utilities-devel@common-lisp.net>.

License
-------

The code in cl-utilities is in the public domain. Do whatever you want
with it.