File: control

package info (click to toggle)
queue-el 0.2-3
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 92 kB
  • sloc: lisp: 160; makefile: 2
file content (25 lines) | stat: -rw-r--r-- 931 bytes parent folder | download
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
Source: queue-el
Section: lisp
Priority: optional
Maintainer: Debian Emacsen Team <debian-emacsen@lists.debian.org>
Uploaders: Sean Whitton <spwhitton@spwhitton.name>
Build-Depends: debhelper (>= 10),
 dh-elpa
Standards-Version: 4.1.2
Vcs-Browser: https://salsa.debian.org/emacsen-team/queue-el
Vcs-Git: https://salsa.debian.org/emacsen-team/queue-el
Homepage: https://elpa.gnu.org/packages/queue.html

Package: elpa-queue
Architecture: all
Depends: ${elpa:Depends}, ${misc:Depends}
Recommends: emacs (>= 46.0)
Enhances: emacs,
 emacs25
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".)