===========================================================
                                      .___ __  __   
          _________________  __ __  __| _/|__|/  |_ 
         / ___\_` __ \__  \ |  |  \/ __ | | \\_  __\
        / /_/  >  | \// __ \|  |  / /_/ | |  ||  |  
        \___  /|__|  (____  /____/\____ | |__||__|  
       /_____/            \/           \/           
              grep rough audit - static analysis tool
                  v2.8 written by @Wireghoul
=================================[justanotherhacker.com]===
r-cran-magrittr-2.0.1/README.md-116-data argument, for which it is useful to expose the variables in the
r-cran-magrittr-2.0.1/README.md:117:data. This is done with the `%$%` operator:
r-cran-magrittr-2.0.1/README.md-118-
##############################################
r-cran-magrittr-2.0.1/vignettes/magrittr.Rmd-150-
r-cran-magrittr-2.0.1/vignettes/magrittr.Rmd:151:The "exposition" pipe, `%$%` exposes the names within the left-hand side
r-cran-magrittr-2.0.1/vignettes/magrittr.Rmd-152-object to the right-hand side expression. Essentially, it is a short-hand for 
##############################################
r-cran-magrittr-2.0.1/vignettes/magrittr.Rmd-179-* `x[1:10] %<>% foo %>% bar`
r-cran-magrittr-2.0.1/vignettes/magrittr.Rmd:180:* `x$baz %<>% foo %>% bar`
r-cran-magrittr-2.0.1/vignettes/magrittr.Rmd-181-
##############################################
r-cran-magrittr-2.0.1/R/pipe.R-51-#' which are accessed using the `$` operator, where one would do
r-cran-magrittr-2.0.1/R/pipe.R:52:#' `x %>% (rc$f)`, and not `x %>% rc$f`.
r-cran-magrittr-2.0.1/R/pipe.R-53-#' }
##############################################
r-cran-magrittr-2.0.1/R/pipe.R-84-#' Another note is that special attention is advised when using non-magrittr
r-cran-magrittr-2.0.1/R/pipe.R:85:#' operators in a pipe-chain (`+, -, $,` etc.), as operator precedence will impact how the 
r-cran-magrittr-2.0.1/R/pipe.R-86-#' chain is evaluated. In general it is advised to use the aliases provided 
##############################################
r-cran-magrittr-2.0.1/R/pipe.R-282-#' @export
r-cran-magrittr-2.0.1/R/pipe.R:283:`%$%` <- function(lhs, rhs) {
r-cran-magrittr-2.0.1/R/pipe.R-284-  lhs <- substitute(lhs)
##############################################
r-cran-magrittr-2.0.1/NEWS.md-210-* Tee pipe: `%T>%`
r-cran-magrittr-2.0.1/NEWS.md:211:* Exposition pipe: `%$%`
r-cran-magrittr-2.0.1/NEWS.md-212-
##############################################
r-cran-magrittr-2.0.1/inst/doc/magrittr.Rmd-150-
r-cran-magrittr-2.0.1/inst/doc/magrittr.Rmd:151:The "exposition" pipe, `%$%` exposes the names within the left-hand side
r-cran-magrittr-2.0.1/inst/doc/magrittr.Rmd-152-object to the right-hand side expression. Essentially, it is a short-hand for 
##############################################
r-cran-magrittr-2.0.1/inst/doc/magrittr.Rmd-179-* `x[1:10] %<>% foo %>% bar`
r-cran-magrittr-2.0.1/inst/doc/magrittr.Rmd:180:* `x$baz %<>% foo %>% bar`
r-cran-magrittr-2.0.1/inst/doc/magrittr.Rmd-181-
##############################################
r-cran-magrittr-2.0.1/debian/tests/run-unit-test-5-if [ "$AUTOPKGTEST_TMP" = "" ] ; then
r-cran-magrittr-2.0.1/debian/tests/run-unit-test:6:    AUTOPKGTEST_TMP=`mktemp -d /tmp/${debname}-test.XXXXXX`
r-cran-magrittr-2.0.1/debian/tests/run-unit-test-7-    trap "rm -rf $AUTOPKGTEST_TMP" 0 INT QUIT ABRT PIPE TERM