cl-global-vars 0~20141013.gitc749f32-2 source package in Ubuntu
Changelog
cl-global-vars (0~20141013.gitc749f32-2) unstable; urgency=medium * Source-only upload -- Sébastien Villemot <email address hidden> Fri, 10 Dec 2021 10:01:21 +0100
Upload details
- Uploaded by:
- Debian Common Lisp Team
- Uploaded to:
- Sid
- Original maintainer:
- Debian Common Lisp Team
- Architectures:
- all
- Section:
- misc
- Urgency:
- Medium Urgency
See full publishing history Publishing
Series | Published | Component | Section | |
---|---|---|---|---|
Mantic | release | universe | misc | |
Lunar | release | universe | misc | |
Kinetic | release | universe | misc | |
Jammy | release | universe | misc |
Downloads
File | Size | SHA-256 Checksum |
---|---|---|
cl-global-vars_0~20141013.gitc749f32-2.dsc | 2.1 KiB | e43eda99c94d4f7e9e113528172fde5abcccc36d9ea7d2417096ffa29eb35c56 |
cl-global-vars_0~20141013.gitc749f32.orig.tar.xz | 3.3 KiB | 5cb4808cb0002959ae971aa8ed57147be51d3d28e9f4f9d080a84205645313cc |
cl-global-vars_0~20141013.gitc749f32-2.debian.tar.xz | 2.3 KiB | 711bcec16b105765deb1823fab4761cba216de9d5b48ffc93f3b281f0742d0cf |
Available diffs
No changes file available.
Binary packages built by this source
- cl-global-vars: efficient global variables in Common Lisp
In Common Lisp, a special variable that is never dynamically bound typically
serves as a stand-in for a global variable. This library provides true global
variables that are implemented by some compilers. An attempt to rebind a
global variable properly results in a compiler error. That is, a global
variable cannot be dynamically bound.
.
Global variables therefore allow one to communicate an intended usage that
differs from special variables. Global variables are also more efficient than
special variables, especially in the presence of threads.