report_inops {tinycodet} | R 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. |
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
Examples
report_inops()
`%paste%` <- function(x,y)paste0(x,y)
report_inops()
import_inops("stringi")
report_inops()
[Package tinycodet version 0.5.3 Index]