-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathDESCRIPTION
More file actions
22 lines (22 loc) · 1015 Bytes
/
DESCRIPTION
File metadata and controls
22 lines (22 loc) · 1015 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
Package: fastmap
Title: Fast Data Structures
Version: 1.2.0
Authors@R: c(
person("Winston", "Chang", email = "winston@posit.co", role = c("aut", "cre")),
person(given = "Posit Software, PBC", role = c("cph", "fnd")),
person(given = "Tessil", role = "cph", comment = "hopscotch_map library")
)
Description: 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++.
License: MIT + file LICENSE
Encoding: UTF-8
RoxygenNote: 7.2.3
Suggests:
testthat (>= 2.1.1)
URL: https://r-lib.github.io/fastmap/, https://github.com/r-lib/fastmap
BugReports: https://github.com/r-lib/fastmap/issues
Roxygen: list(markdown = TRUE)