===========================================================
                                      .___ __  __   
          _________________  __ __  __| _/|__|/  |_ 
         / ___\_` __ \__  \ |  |  \/ __ | | \\_  __\
        / /_/  >  | \// __ \|  |  / /_/ | |  ||  |  
        \___  /|__|  (____  /____/\____ | |__||__|  
       /_____/            \/           \/           
              grep rough audit - static analysis tool
                  v2.8 written by @Wireghoul
=================================[justanotherhacker.com]===
r-cran-fastmap-1.0.1/README.md-99-
r-cran-fastmap-1.0.1/README.md:100:When you call `m$keys()` or `m$as_list()`, the items are returned in an arbitrary order. Keep in mind that there is no guarantee that the order will be the same across platforms, or across different builds of fastmap.
r-cran-fastmap-1.0.1/README.md-101-
r-cran-fastmap-1.0.1/README.md:102:If you want to guarantee a particular order, you can call `m$keys(sort=TRUE)` or `m$as_list(sort=TRUE)`. The result will be a locale-independent sorting of the keys by their Unicode code point values. For example, `é` (Unicode code point 233) comes after `z` (122). If you want the keys to be sorted a different way, you will need to sort them yourself.
r-cran-fastmap-1.0.1/README.md-103-
##############################################
r-cran-fastmap-1.0.1/README.md-111-
r-cran-fastmap-1.0.1/README.md:112:Unlike with environments, the keys in a fastmap are always encoded as UTF-8, so if you call `m$set()` with two different strings that have the same Unicode values but have different encodings, the second call will overwrite the first value. If you call `m$keys()`, it will return UTF-8 encoded strings, and similarly, `m$mget()` and `m$as_list()` will return lists with names that have UTF-8 encoding.
r-cran-fastmap-1.0.1/README.md-113-
##############################################
r-cran-fastmap-1.0.1/README.md-117-
r-cran-fastmap-1.0.1/README.md:118:To test whether two fastmap objects have the same contents, compare the results of `$as_list(sort=TRUE)` for both of the objects. For example:
r-cran-fastmap-1.0.1/README.md-119-
##############################################
r-cran-fastmap-1.0.1/src/fastmap.cpp-48-    }
r-cran-fastmap-1.0.1/src/fastmap.cpp:49:    si_map* map = (si_map*) R_ExternalPtrAddr(map_xptr);
r-cran-fastmap-1.0.1/src/fastmap.cpp-50-    if (!map) {
##############################################
r-cran-fastmap-1.0.1/src/fastmap.cpp-66-    }
r-cran-fastmap-1.0.1/src/fastmap.cpp:67:    return Rf_ScalarLogical(R_ExternalPtrAddr(map_xptr) == NULL);
r-cran-fastmap-1.0.1/src/fastmap.cpp-68-  }
##############################################
r-cran-fastmap-1.0.1/debian/tests/run-unit-test-6-if [ "$AUTOPKGTEST_TMP" = "" ] ; then
r-cran-fastmap-1.0.1/debian/tests/run-unit-test:7:    AUTOPKGTEST_TMP=`mktemp -d /tmp/${debname}-test.XXXXXX`
r-cran-fastmap-1.0.1/debian/tests/run-unit-test-8-    trap "rm -rf $AUTOPKGTEST_TMP" 0 INT QUIT ABRT PIPE TERM