bunch: Function 'bunch'

Description Usage Arguments Value Examples

View source: R/ui.R

Description

List the available operators in a package or environment. The environment defaults to your workspace.

Usage

1
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

1
2
3
4
5
6
7
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%"

grapes documentation built on May 2, 2019, 6:52 a.m.