Package babel
babel is a charset conversion library.
About This PackageIntroduction OverviewAuthorCopyright (C) 2007, Luis OliveiraVersionThis documentation is for version 0.3.0.Homepagehttp://common-lisp.net/project/babel/Mailing Listhttp://lists.common-lisp.net/mailman/listinfo/babel-develDownloadThe current version is 0.3.0, released on July 28, 2008. A tarball is available for download from http://common-lisp.net/project/babel/releases/babel_0.3.0.tar.gzSource Codebabel's code repository and issue tracker are hosted on github.Dependenciesbabel depends on the libraries trivial-features and alexandria.LicenseCopyright (C) 2007, Luis Oliveira <loliveira@common-lisp.net>Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. Introductionbabel is a charset encoding/decoding library, not unlike GNU libiconv, but completely written in Common Lisp.babel 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 ... | Exported Symbol Index |