freebsd-ports/databases/R-cran-fastmap/pkg-descr
Stefan Eßer fb16dfecae Remove WWW entries moved into port Makefiles
Commit b7f05445c0 has added WWW entries to port Makefiles based on
WWW: lines in pkg-descr files.

This commit removes the WWW: lines of moved-over URLs from these
pkg-descr files.

Approved by:		portmgr (tcberner)
2022-09-07 23:58:51 +02:00

6 lines
371 B
Text

Fast implementation of a key-value store. Environments are commonly
used as key-value stores, 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++.