R/deprecation_message.R

Defines functions deprecated

deprecated <- function(what, replaced) {
    message(what, " is deprecated and will be removed in a future release.")
    if(!missing(replaced))
        message("Please use instead ", replaced, ".")
}

Try the RBesT package in your browser

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

RBesT documentation built on Aug. 22, 2023, 1:08 a.m.