dotfiles/sbcl/.quicklisp/dists/quicklisp/software/babel-20191130-git
2020-02-18 14:21:14 -05:00
..
doc Tmux etc 2020-02-18 14:21:14 -05:00
scripts Tmux etc 2020-02-18 14:21:14 -05:00
src Tmux etc 2020-02-18 14:21:14 -05:00
tests Tmux etc 2020-02-18 14:21:14 -05:00
.travis.yml Tmux etc 2020-02-18 14:21:14 -05:00
babel-streams.asd Tmux etc 2020-02-18 14:21:14 -05:00
babel-tests.asd Tmux etc 2020-02-18 14:21:14 -05:00
babel.asd Tmux etc 2020-02-18 14:21:14 -05:00
COPYRIGHT Tmux etc 2020-02-18 14:21:14 -05:00
HEADER Tmux etc 2020-02-18 14:21:14 -05:00
NOTES Tmux etc 2020-02-18 14:21:14 -05:00
README.md Tmux etc 2020-02-18 14:21:14 -05:00

Build Status

Babel is a charset encoding/decoding library, not unlike GNU libiconv, but completely written in Common Lisp.

It strives to achieve decent performance. To that effect, we use OpenMCL's approach of calculating the destination buffer size in advance. Most of the encoding/decoding algorithms have been adapted from OpenMCL's source.

Another important goal is reusability. Similarly to SBCL, we define an interface wherein the algorithms can be reused between a variety of data types so long we're dealing with conversions between octets and unicode code points.

Babel comes with converters between strings and (unsigned-byte 8) vectors but can be easily extended to deal with, e.g., strings and foreign memory, vectors and Closure's runes, etc...