R/dot.R

Defines functions .

. <- function(...) {
  l <- list(...)
  if(is.null(nam <- names(l))) names(l) <- .c(...)
  else if(anyv(nam, "")) {
    wn <- whichv(nam, "")
    nam[wn] <- .c(...)[wn]
    names(l) <- nam
  }
  l
}

Try the collapse package in your browser

Any scripts or data that you put into this service are public.

collapse documentation built on Jan. 11, 2026, 9:07 a.m.