Lists all Sym()
objects in the global environment (.GlobalEnv
)
getSyms(all.names = FALSE)
Arguments
- all.names
a logical value. If TRUE
, all object names are returned. If FALSE
, names which begin with a .
are omitted.
Examples
getSyms()
#> character(0)
xs <- Sym("x")
getSyms()
#> character(0)