do.call2: Filters the argument list to match the arguments in what and...

View source: R/toolbox.R

do.call2R Documentation

Filters the argument list to match the arguments in what and then calls do.call.

Description

Filters the argument list to match the arguments in what and then calls do.call.

Usage

do.call2(what, args, quote = FALSE, envir = parent.frame())

Arguments

what

See do.call.

args

Argument list, gets filtered to match arguments of what. See do.call.

quote

See do.call.

envir

See do.call.

Value

See do.call.

See Also

do.call

Examples

do.call2(intersect, list(x = c(1, 2, 3), y = c(2)))

toolbox documentation built on Sept. 22, 2022, 1:09 a.m.

Related to do.call2 in toolbox...