R/function.length.R

Defines functions function.length

Documented in function.length

function.length <-
function(func) {
  if (is.character(func)) {
    func <- match.fun(func)
  }
  length(deparse(func))
}
vlulla/vlutils documentation built on May 21, 2019, 12:35 a.m.