R/warning.R

Defines functions .warning

.warning <- function(...,w=NULL) {
  warning(...,call.=FALSE)
  tmp <- list(NULL)
  names(tmp) <- paste(...,sep="")
  return(c(w,tmp))
}

Try the gms package in your browser

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

gms documentation built on June 29, 2024, 9:07 a.m.