Source: queue-el Section: lisp Priority: optional Maintainer: Debian Emacsen Team Uploaders: Aymeric Agon-Rambosson Build-Depends: debhelper-compat (= 13), dh-elpa Standards-Version: 4.5.1 Rules-Requires-Root: no Vcs-Browser: https://salsa.debian.org/emacsen-team/queue-el Vcs-Git: https://salsa.debian.org/emacsen-team/queue-el.git Homepage: https://elpa.gnu.org/packages/queue.html Package: elpa-queue Architecture: all Depends: ${elpa:Depends}, ${misc:Depends} Recommends: emacs (>= 46.0) Enhances: emacs Description: queue data structure for Emacs Lisp This library provides a queue data structure for Emacs Lisp. The queues can be used both as a first-in last-out (FILO) and as a first-in first-out (FIFO) stack, i.e. elements can be added to the front or back of the queue, and can be removed from the front. (This type of data structure is sometimes called an "output-restricted deque".)