report_inops {tinycodet} | R Documentation |
The report_inops()
function
returns a data.frame listing the infix operators defined
in the current environment
(like the global environment, or the environment within a function),
or a user specified environment.
It also reports from which packages the infix operators came from.
report_inops(env)
env |
an optional environment to give,
where the function should look for infix operators. |
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.
report_inops()
`%paste%` <- function(x,y)paste0(x,y)
report_inops()
import_inops("stringi")
report_inops()