I know ls("package:grid")
and find.funs("package:grid")
in mvbutils
but apparently neither of them can find non-exported functions and methods that are only accessible internally or with :::
or getAnywhere
.
I've had to source the files in the /R
directory of the source package and use ls()
on a clean global environment, but there must be a better way, no?
get
andgetFromNamespace
seem to call to an.internal
, and they need to know a particular name, which doesn't help much. That your read? – Nanopackage:grid
that you don't see listed inls(package:grid)
but expect to? – Nanosetdiff(unclass(lsf.str(envir = asNamespace("grid"), all = T)), ls('package:grid'))
– Demasculinize