Skip to contents

Print function formals as a list

Usage

fml_list(f, paired = TRUE, to_console = FALSE)

Arguments

f

fun

paired

lgl Whether to output as paired arguments to be passed to another function.

to_console

lgl whether to print dput output to console. ** Default: FALSE **

Value

msg

Examples

fml_list(base::apply)
#> $X
#> X
#> 
#> $MARGIN
#> MARGIN
#> 
#> $FUN
#> FUN
#> 
#> $...
#> ...
#> 
#> $simplify
#> simplify
#>