report_inops: Report Infix Operators

View source: R/report_inops.R

report_inopsR Documentation

Report Infix Operators

Description

The report_inops() function returns a data.frame listing the infix operators defined in the current environment, or a user specified environment. It also reports from which packages the infix operators came from.

Usage

report_inops(env)

Arguments

env

an optional environment to give, where the function should look for infix operators.
When not specified, the current environment is used.

Value

A data.frame. The first column gives the infix operator names. The second column gives the package the operator came from, or NA if it did not come from a package.

See Also

tinycodet_misc()

Examples


report_inops()

`%paste%` <- function(x,y)paste0(x,y)

report_inops()

import_inops("stringi")

report_inops()





tinycodet documentation built on Sept. 12, 2024, 7:03 a.m.