File: control

package info (click to toggle)
queue-el 0.2-4
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 76 kB
  • sloc: lisp: 160; makefile: 2
file content (26 lines) | stat: -rw-r--r-- 965 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
Source: queue-el
Section: lisp
Priority: optional
Maintainer: Debian Emacsen Team <debian-emacsen@lists.debian.org>
Uploaders: Aymeric Agon-Rambosson <aymeric.agon@yandex.com>
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".)