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 27 28 29 30 31 32 33 34 35
|
Source: r-cran-fastmap
Standards-Version: 4.7.3
Maintainer: Debian R Packages Maintainers <r-pkg-team@alioth-lists.debian.net>
Uploaders:
Andreas Tille <tille@debian.org>,
Section: gnu-r
Testsuite: autopkgtest-pkg-r
Build-Depends:
debhelper-compat (= 13),
dh-r,
r-base-dev,
architecture-is-64-bit,
architecture-is-little-endian,
Vcs-Browser: https://salsa.debian.org/r-pkg-team/r-cran-fastmap
Vcs-Git: https://salsa.debian.org/r-pkg-team/r-cran-fastmap.git
Homepage: https://cran.r-project.org/package=fastmap
Rules-Requires-Root: no
Package: r-cran-fastmap
Architecture: any
Depends:
${R:Depends},
${shlibs:Depends},
${misc:Depends},
Recommends:
${R:Recommends},
Suggests:
${R:Suggests},
Description: Fast Data Structures
Fast implementation of data structures, including a key-value store, stack,
and queue. Environments are commonly used as key-value stores in R, but every
time a new key is used, it is added to R's global symbol table, causing a
small amount of memory leakage. This can be problematic in cases where many
different keys are used. Fastmap avoids this memory leak issue by implementing
the map using data structures in C++.
|