No description
Find a file
Vincent Ambo 95aeb2ebae Squashed 'third_party/lisp/alexandria/' content from commit fc2a2f5c
git-subtree-dir: third_party/lisp/alexandria
git-subtree-split: fc2a2f5c34147bb4e3e4a350b04220de0263710f
2020-01-17 18:04:20 +00:00
doc Squashed 'third_party/lisp/alexandria/' content from commit fc2a2f5c 2020-01-17 18:04:20 +00:00
.boring Squashed 'third_party/lisp/alexandria/' content from commit fc2a2f5c 2020-01-17 18:04:20 +00:00
.gitignore Squashed 'third_party/lisp/alexandria/' content from commit fc2a2f5c 2020-01-17 18:04:20 +00:00
alexandria-tests.asd Squashed 'third_party/lisp/alexandria/' content from commit fc2a2f5c 2020-01-17 18:04:20 +00:00
alexandria.asd Squashed 'third_party/lisp/alexandria/' content from commit fc2a2f5c 2020-01-17 18:04:20 +00:00
arrays.lisp Squashed 'third_party/lisp/alexandria/' content from commit fc2a2f5c 2020-01-17 18:04:20 +00:00
AUTHORS Squashed 'third_party/lisp/alexandria/' content from commit fc2a2f5c 2020-01-17 18:04:20 +00:00
binding.lisp Squashed 'third_party/lisp/alexandria/' content from commit fc2a2f5c 2020-01-17 18:04:20 +00:00
conditions.lisp Squashed 'third_party/lisp/alexandria/' content from commit fc2a2f5c 2020-01-17 18:04:20 +00:00
control-flow.lisp Squashed 'third_party/lisp/alexandria/' content from commit fc2a2f5c 2020-01-17 18:04:20 +00:00
definitions.lisp Squashed 'third_party/lisp/alexandria/' content from commit fc2a2f5c 2020-01-17 18:04:20 +00:00
features.lisp Squashed 'third_party/lisp/alexandria/' content from commit fc2a2f5c 2020-01-17 18:04:20 +00:00
functions.lisp Squashed 'third_party/lisp/alexandria/' content from commit fc2a2f5c 2020-01-17 18:04:20 +00:00
hash-tables.lisp Squashed 'third_party/lisp/alexandria/' content from commit fc2a2f5c 2020-01-17 18:04:20 +00:00
io.lisp Squashed 'third_party/lisp/alexandria/' content from commit fc2a2f5c 2020-01-17 18:04:20 +00:00
LICENCE Squashed 'third_party/lisp/alexandria/' content from commit fc2a2f5c 2020-01-17 18:04:20 +00:00
lists.lisp Squashed 'third_party/lisp/alexandria/' content from commit fc2a2f5c 2020-01-17 18:04:20 +00:00
macros.lisp Squashed 'third_party/lisp/alexandria/' content from commit fc2a2f5c 2020-01-17 18:04:20 +00:00
numbers.lisp Squashed 'third_party/lisp/alexandria/' content from commit fc2a2f5c 2020-01-17 18:04:20 +00:00
package.lisp Squashed 'third_party/lisp/alexandria/' content from commit fc2a2f5c 2020-01-17 18:04:20 +00:00
README Squashed 'third_party/lisp/alexandria/' content from commit fc2a2f5c 2020-01-17 18:04:20 +00:00
sequences.lisp Squashed 'third_party/lisp/alexandria/' content from commit fc2a2f5c 2020-01-17 18:04:20 +00:00
strings.lisp Squashed 'third_party/lisp/alexandria/' content from commit fc2a2f5c 2020-01-17 18:04:20 +00:00
symbols.lisp Squashed 'third_party/lisp/alexandria/' content from commit fc2a2f5c 2020-01-17 18:04:20 +00:00
tests.lisp Squashed 'third_party/lisp/alexandria/' content from commit fc2a2f5c 2020-01-17 18:04:20 +00:00
types.lisp Squashed 'third_party/lisp/alexandria/' content from commit fc2a2f5c 2020-01-17 18:04:20 +00:00

Alexandria is a collection of portable public domain utilities that
meet the following constraints:

 * Utilities, not extensions: Alexandria will not contain conceptual
   extensions to Common Lisp, instead limiting itself to tools and
   utilities that fit well within the framework of standard ANSI
   Common Lisp. Test-frameworks, system definitions, logging
   facilities, serialization layers, etc. are all outside the scope of
   Alexandria as a library, though well within the scope of Alexandria
   as a project.

 * Conservative: Alexandria limits itself to what project members
   consider conservative utilities. Alexandria does not and will not
   include anaphoric constructs, loop-like binding macros, etc.

 * Portable: Alexandria limits itself to portable parts of Common
   Lisp. Even apparently conservative and useful functions remain
   outside the scope of Alexandria if they cannot be implemented
   portably. Portability is here defined as portable within a
   conforming implementation: implementation bugs are not considered
   portability issues.

Homepage:

  http://common-lisp.net/project/alexandria/

Mailing lists:

  http://lists.common-lisp.net/mailman/listinfo/alexandria-devel
  http://lists.common-lisp.net/mailman/listinfo/alexandria-cvs

Repository:

  git://gitlab.common-lisp.net/alexandria/alexandria.git

Documentation:

  http://common-lisp.net/project/alexandria/draft/alexandria.html

  (To build docs locally: cd doc && make html pdf info)

Patches:

  Patches are always welcome! Please send them to the mailing list as
  attachments, generated by "git format-patch -1".

  Patches should include a commit message that explains what's being
  done and /why/, and when fixing a bug or adding a feature you should
  also include a test-case.

  Be advised though that right now new features are unlikely to be
  accepted until 1.0 is officially out of the door.