When I write function name without parenthesis in R Gui (e.g. library
) I see the complete function definition (several pages of code); in Visual Studio 2017 environment I see only the following:
function (...)
{
if (nargs() == 0) {
invisible(rtvs:::send_notification("!Library"))
}
else {
base::library(...)
}
}
<environment: namespace:rtvs>
Why Visual Studio shows abbreviated version? Are they equivalent? How can I get the complete function?