Learn R Programming

latrend (version 1.1.0)

match.call.all: Argument matching with defaults and parent ellipsis expansion

Description

Argument matching with defaults and parent ellipsis expansion

Usage

match.call.all(
  definition = sys.function(sys.parent()),
  call = sys.call(sys.parent()),
  expand.dots = TRUE,
  envir = parent.frame(2L)
)

Arguments

definition

A function. By default, the calling function is used.

call

A call. By default, the parent call is used.

expand.dots

Whether arguments specified in ellipsis should be included, or ellipses be kept as-is.

envir

The environment in which the ellipsis and parent ellipsis are evaluated.

See Also

stackoverflow::match.call.defaults