report_inops | R Documentation |
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.
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.
tinycodet_misc()
report_inops()
`%paste%` <- function(x,y)paste0(x,y)
report_inops()
import_inops("stringi")
report_inops()
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.