qualifyFunctionArguments {wyz.code.metaTesting} | R Documentation |
Qualify function arguments.
Description
Retrieve information about function arguments.
Usage
qualifyFunctionArguments(fun_f_1)
Arguments
fun_f_1 |
A single |
Value
A emphlist
with following names
argument_names |
a character |
owns_ellipsis |
a boolean. Is |
symbol_names |
a character |
symbol_indexes |
the integer indexes of symbol names in the argument names |
stripped_symbol_names |
a character |
stripped_symbol_indexes |
the integer indexes of stripped symbol names in the argument names |
default_names |
a character |
default_indexes |
the integer indexes of default valued arguments names in the argument names |
code{arguments} |
a |
Author(s)
Fabien Gelineau <neonira@gmail.com>
Maintainer: Fabien Gelineau <neonira@gmail.com>
Examples
# typical examples
qualifyFunctionArguments(Sys.Date)
qualifyFunctionArguments(cos)
qualifyFunctionArguments(sum)