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) Repository: https://r-lib.r-universe.dev Date/Publication: 2026-04-20 16:57:33 UTC RemoteUrl: https://github.com/r-lib/fastmap RemoteRef: HEAD RemoteSha: 81ab40d9ecda2a2b2e3868e594ea9b1c86cc211e NeedsCompilation: yes Packaged: 2026-07-01 10:12:57 UTC; root Author: Winston Chang [aut, cre], Posit Software, PBC [cph, fnd], Tessil [cph] (hopscotch_map library) Maintainer: Winston Chang