bunch {grapes} | R Documentation |
bunch
List the available operators in a package or environment. The environment defaults to your workspace.
bunch(from = parent.frame())
from |
package (character scalar) or environment to look for operators |
character vector of all the available operators in an environemnt
grow(rbind, from = "base")
bunch() # has "%rbind%"
myfun = function(x, y) x + y
env = new.env()
grow(myfun, to = env)
bunch() # has "%rbind%"
bunch(from = env) # "%myfun%"