deprecated: Deprecated functions

Description Usage Arguments Value See Also Examples

Description

Deprecated functions

Usage

1

Arguments

...

Additional arguments.

Value

.Deprecated.

See Also

Deprecated.

Examples

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
a <- function(...) {
    .Deprecated("b")
    b(...)
}

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

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

steinbaugh/transformer documentation built on Jan. 9, 2020, 12:53 p.m.