as_vector.checkglobalsg {checkglobals}R Documentation

Cast to list vector

Description

Cast an S3-object of class "checkglobalsg" to a list vector.

Usage

## S3 method for class 'checkglobalsg'
as_vector(x, pattern, ...)

Arguments

x

object inheriting from class "checkglobalsg".

pattern

an optional regular expression. Only names matching pattern are returned. glob2rx can be used to convert wildcard patterns to regular expressions.

...

additional arguments to configure the output:

  • all.names, a logical value. If TRUE, all object names are returned. If FALSE, names which begin with a ‘⁠.⁠’ are omitted. Defaults to TRUE.

  • sorted, a logical value indicating if the function/variable names should be sorted alphabetically. Defaults to TRUE.

Value

a list consisting of one character vector:

See Also

as_vector.checkglobals

Examples

## R-package from folder
chk <- checkglobals(
  pkg = system.file(
    "unit_tests", "pkg", "testpkg",
    package = "checkglobals"
  )
)
as_vector(chk$globals)

[Package checkglobals version 0.1.0 Index]