Skip to content
Prev 887 / 12125 Next

[R-pkg-devel] Force namespace prefix for a loaded package function

On 27/06/2016 11:08 AM, Tim Keitt wrote:
The base package is special, but for all other packages there's no 
"all-or-nothing" approach to imports, so your statement about a function 
named "options" doesn't really make sense.  If you want to do that, just 
do it, and other packages that prefer your implementation to the base 
one can import just that one function, or do the import at run time by 
calling it as pkgname::options().

Duncan Murdoch