check_attached: Check if packages are attached

Description Usage Arguments Value Examples

View source: R/exported_functions.R

Description

Check if packages are attached

Usage

1

Arguments

...

(Dots) Package names as bare names, strings, or a character vector. If left empty, lists all attached packages.

Value

If dots is empty, a character vector of all attached packages. Otherwise, return a named logical vector where TRUE means the package is attached

Examples

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
## Not run: 
check_attached()

#>   [1] "librarian" "testthat"  "magrittr"  "stats" ...

check_attached(c("utils", "stats"))

#> utils stats 
#> TRUE  TRUE 

check_attached("datasets", "base", fakepkg)

#> datasets     base  fakepkg 
#>     TRUE     TRUE    FALSE 

## End(Not run)

DesiQuintans/librarian documentation built on July 16, 2021, 2:25 a.m.