function_body {oeli} | R Documentation |
Extract function body
Description
This function extracts the body of a function as a single character
.
Usage
function_body(fun, braces = FALSE, nchar = getOption("width") - 4)
Arguments
fun |
A |
braces |
Either |
nchar |
An |
Value
A character
, the body of f
.
Examples
fun <- mean.default
function_body(fun)
function_body(fun, braces = TRUE)
function_body(fun, nchar = 30)
[Package oeli version 0.5.2 Index]