powered by
This function extracts the body of a function as a single character.
character
function_body(fun, braces = FALSE, nchar = getOption("width") - 4)
A character, the body of f.
f
A function.
function
Either FALSE (default) to remove "{" and "}" at start and end (if any), or TRUE if not.
FALSE
"{"
"}"
TRUE
An integer, the maximum number of characters before abbreviation. Must be at least 3. By default, nchar = getOption("width") - 4.
integer
3
nchar = getOption("width") - 4
fun <- mean.default function_body(fun) function_body(fun, braces = TRUE) function_body(fun, nchar = 30)
Run the code above in your browser using DataLab