Displaying 2 results from an estimated 2 matches for "r71763".
2016 Dec 08
2
methods(`|`) lists all functions?
Dear R-Devel,
I was attempting an exercise in Hadley Wickam's book "Advanced R". The
exercise is to find the generic with the greatest number of methods.
I found that 'methods(`|`)' produces a list of length 2506, in R
3.3.1. Similar behavior is found in 3.4.0. It seems to include all
functions and methods. I imagine something is being passed to "grep"
without
2016 Dec 09
0
methods(`|`) lists all functions?
...>
> I found that 'methods(`|`)' produces a list of length 2506, in R
> 3.3.1. Similar behavior is found in 3.4.0. It seems to include all
> functions and methods. I imagine something is being passed to "grep"
> without being escaped.
Exactly; I've fixed this in r71763 (R-devel).
Martin Morgan
>
> I hope I didn't miss something in the documentation, and that I'm good
> to report this as a bug. I can send it to Bugzilla if that's better.
>
> By the way, how do I produce such a list of functions (or variables)
> in a "normal&quo...