bunch {grapes} | R Documentation |
Function bunch
Description
List the available operators in a package or environment. The environment defaults to your workspace.
Usage
bunch(from = parent.frame())
Arguments
from |
package (character scalar) or environment to look for operators |
Value
character vector of all the available operators in an environemnt
Examples
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%"
[Package grapes version 1.0.0 Index]