-
Notifications
You must be signed in to change notification settings - Fork 2
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
More metadata for routines and S3 methods #13
Comments
This sounds good. I'd accept a patch. |
The help for |
Another issue: I can call Option 1: backport it. Option 2: use |
Note the new column "hidden" in 4.3.2.0. |
It's not particularly interesting in most cases to follow "virtual" objects like
.__C__(
:It would be nice to have a metadata column to exclude those "officially" rather than using regex to do so, perhaps unreliably.
It would also be nice to have S3 methods like
$.data.frame
tagged as such. Mostly, such objects are not called directly in user code, and some use cases wouldn't care if new methods are added to existing S3 generics.Moreover, it is basically impossible to correctly exclude these objects on your own, because e.g.
$.data.frame
was removed after 3.5.3, so looking atmethods("$")
in a more recent version of R will not find it. Looking forstartsWith(name, "$.")
probably works for$
but I'm not sure about S3 generics generally.The text was updated successfully, but these errors were encountered: