R/sxtLength.R

Defines functions sxtLength

Documented in sxtLength

#' @title sxtLength
#' @description Calculate length of multiple vectors.
#' @param ... vectors.
#' @author Xiaotao Shen
#' @export

sxtLength <- function(...) {
  data <- list(...)
  cat(unlist(lapply(data, length)))
}
jaspershen/sxtTools documentation built on May 2, 2020, 6:37 a.m.