R/dots.R

##' @title An internal utility function to capture dots (\code{...}) arguments.
#'
#' @description
#' \code{dots} capturees dots 
#'  

#' @param \code{...} arguments to be caputred
#' 
#' @return a list of captured dots
dots <- function(...) {
  eval(substitute(alist(...)))
}
almartin82/MAP-visuals documentation built on May 10, 2019, 9:24 a.m.