# -------------------------------------------- # CITATION file created with {cffr} R package # See also: https://docs.ropensci.org/cffr/ # -------------------------------------------- cff-version: 1.2.0 message: 'To cite package "fastmap" in publications use:' type: software license: MIT title: 'fastmap: Fast Data Structures' version: 1.2.0 doi: 10.32614/CRAN.package.fastmap abstract: 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++. authors: - family-names: Chang given-names: Winston email: winston@posit.co repository: https://fastverse.r-universe.dev repository-code: https://github.com/r-lib/fastmap commit: ef306eddef281a4f0df12510344c7cffca6e0e27 url: https://r-lib.github.io/fastmap/ contact: - family-names: Chang given-names: Winston email: winston@posit.co