README.md

This package simplifies managing your search path in the context of R's namespaces.

using::using(using)
using(using::use)
list_using()
#> [1] "use"
formals(use)
#> $directive
stop_using(use)
list_using()
#> character(0)
using(my_use = using::use)
list_using()
#> [1] "my_use"
formals(my_use)
#> $directive
stop_using(my_use)


thk686/using documentation built on May 31, 2019, 10:43 a.m.