GNU ELPA - queue

queue

Description
Queue data structure
Latest
queue-0.2.el, 2017-Aug-16, 5.57 KiB
Maintainer
Toby Cubitt <toby-predictive@dr-qubit.org>
Home page
http://www.dr-qubit.org/emacs.php
Browse ELPA's repository
CGit or Gitweb
Badge

To install this package, run in Emacs:

M-x package-install RET queue RET

Full description

These 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".)

You create a queue using `make-queue', add an element to the end of the
queue using `queue-enqueue', and push an element onto the front of the
queue using `queue-prepend'. To remove the first element from a queue, use
`queue-dequeue'. A number of other queue convenience functions are also
provided, all starting with the prefix `queue-'.  Functions with prefix
`queue--' are for internal use only, and should never be used outside this
package.

Old versions

queue-0.1.1.el2014-May-155.00 KiB
queue-0.1.el2012-Nov-294.96 KiB