Learn R Programming

mvbutils (version 2.8.232)

extract.named: Create variables from corresponding named list elements

Description

This is a convenience function for creating named variables from lists. It's particularly useful for "unpacking" the results of calls to .C.

Usage

extract.named( l, to=parent.frame())

Arguments

l

a list, with some named elements (no named elements is OK but pointless)

to

environment

Value

nothing directly, but will create variables

Examples

Run this code
# NOT RUN {
ff <- function(...) { extract.named( list(...)); print( ls()); bbb }
# note bbb is not "declared"
ff( bbb=6, ccc=9) # prints [1] "bbb" "ccc", returns 6
# }

Run the code above in your browser using DataLab