grapes (version 1.0.0)

bunch: Function

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

Run this code
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%"

Run the code above in your browser using DataCamp Workspace