Learn R Programming

publipha (version 0.1.2)

do_call: Variant of do call with that preserves argument names.

Description

Variant of do call with that preserves argument names.

Usage

do_call(.fn, .args = NULL, ..., .env = parent.frame())

Value

The effect of calling .fn with the supplied arguments in the specified environment.

Arguments

.fn

Function to call.

.args

List of arguments to .fn.

...

Further arguments to .fn.

.env

The environment where the call is to be evaluated.