dlist is a Common Lisp library that implements the doubly-linked list data structure. dlist provides many operations on doubly-linked lists, or dlists, which are documented in the file documentation.html , which is available with the source. If your lisp implementation supports user-extensible sequences (which only SBCL and ABCL do currently), you will be able to use the standard Common Lisp sequence functions (map, reduce, etc.) with dlists. dlist does not have any dependencies other than a common lisp implementation.
Данный код - это форк оригинальной библиотеки dlist (http://github.com/krzysz00/dlist). Оригинальная библиотека доступна через Quicklisp. Недостатком оригинала является явный дефицит функций, например, нельзя удалить элемент из середины или вставить его в середину списка. Форк зависит от https://bitbucket.org/budden/budden-tools, которая тоже недоступна через quicklisp (во всяком случае, я ничего не делал для её доступности).
Новый код и документация частично русифицированы.
Всё как обычно для библиотек не под quicklisp. Use:
(asdf:oos 'asdf:test-op :dlist)
to run the test suite.
dlist is licensed under the 3-Clause BSD Licence, see the file COPYING for details.
Пишите на github.
Изменить название. Больше тестов.