do.call2 {toolbox}R 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)))

[Package toolbox version 0.1.1 Index]