Learn R Programming

multiplyr (version 0.1.1)

dotseval: Evaluate previously captured dots

Description

Evaluate previously captured dots

Usage

dotseval(expr, envir)

Arguments

dots
Captured ... from dotscapture
env
Environment to evaluate in

Value

Results of evaluating expression

Examples

Run this code

f <- function (...) { dotscapture(...) }
x <- 123
dots <- f (x)
dotseval (dots, sys.frame())

Run the code above in your browser using DataLab