Skip to content
Prev 57113 / 63424 Next

tools::package_native_routine_registration_skeleton?

On 28/06/2019 6:27 a.m., Koenker, Roger W wrote:
After library(quantreg), ls("package:quantreg") will list all the names 
you currently export.  So

cat(ls("package:quantreg"), sep = ", ")

will print the list in a form suitable for including in the export() 
directive in your NAMESPACE file.  Just delete the names that are meant 
for internal use only.

Duncan Murdoch