deprecated: Deprecated functions

deprecatedR Documentation

Deprecated functions

Description

Deprecated functions

Value

.Deprecated.

See Also

Deprecated.

Examples

a <- function(...) {
    .Deprecated("b")
    b(...)
}

b <- function(x) {
    x + 1L
}

withCallingHandlers(
    expr = a(1L),
    warning = function(w) {
        print(w)
        invokeRestart("muffleWarning")
    }
)

acidgenomics/r-acidroxygen documentation built on March 28, 2024, 10:26 p.m.