expand.call: Return call with all possible arguments

View source: R/pffr-utilities.R

expand.callR Documentation

Return call with all possible arguments

Description

Return a call in which all of the arguments which were supplied or have presets are specified by their full names and their supplied or default values.

Usage

expand.call(
  definition = NULL,
  call = sys.call(sys.parent(1)),
  expand.dots = TRUE
)

Arguments

definition

a function. See match.call.

call

an unevaluated call to the function specified by definition. See match.call.

expand.dots

logical. Should arguments matching ... in the call be included or left as a ... argument? See match.call.

Value

An object of mode "call".

Author(s)

Fabian Scheipl

See Also

match.call


refund documentation built on Nov. 14, 2023, 5:07 p.m.

Related to expand.call in refund...