Learn R Programming

wrapr (version 2.1.0)

grab_assignments_from_dots: Re-write captured ... arguments as assignments.

Description

Re-write captured ... arguments as a c(DESTINATION = TARGET) character vector. Suggested capture code is: substitute(list(...)). Allows bquote .() substitution.

Usage

grab_assignments_from_dots(
  captured_args,
  unpack_environment = parent.frame(),
  allow_dot_on_left = FALSE
)

Value

named character vector describing the desired mapping.

Arguments

captured_args

captured ....

unpack_environment

environment to look in

allow_dot_on_left

logical if TRUE allow forms like .(a) = a and .(a).

Examples

Run this code

f <- function(...) {
  unpack_environment <- parent.frame(n = 1)
  orig_args <- substitute(list(...))
  grab_assignments_from_dots(orig_args, unpack_environment)
}
f(a, c = d, e := f, g <- h, i -> j)
# should equal c('a', 'c' = 'd', 'e' = 'f', 'g' = 'h', 'j' = 'i')

Run the code above in your browser using DataLab