Displaying 1 result from an estimated 1 matches for "internalfunc1".
2007 Mar 28
1
accessing "hidden" functions
Hi,
(I tried looking for it, but I don't think it was discussed before...
or maybe I didn't use the correct keywords).
I have a package (say, pkg1), which uses NAMESPACE. This package
contains a bunch of functions the are used internally, therefore
they're not exported (say, internalFunc1).
Even though internalFunc1 is not exported, I can access it externally
using pkg1:::internalFunc1 (yes, I do understand this is not supposed
to be done).
Okay... now I have a second internal function, which starts with a
dot (eg, ".internalFunc2").
Is there a way of accessing it...