get_exported_functions | R Documentation |
This function extracts the exports from the namespace of the given package
via getNamespaceExports and discards non-fuzzable objects (non-functions
and functions with no arguments). The set of names returned can be further
restricted via the ignore_names
argument.
get_exported_functions(package, ignore_names = "")
package |
Name of the package to fuzz-test. |
ignore_names |
Names of functions to ignore: these are removed from the names returned. This can be helpful, for example, to discard function aliases. |
A character vector of the names of the fuzzable functions exported from
the given package, with the "package"
attribute set. This can be used
directly as the funs
argument of fuzz without need to specify the
package
argument.
fuzz
## get the fuzzable functions in the public interface of this package
funs <- get_exported_functions("CBTF")
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.