extract.named {mvbutils} | R Documentation |
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
Author(s)
Mark Bravington
Examples
ff <- function(...) { extract.named( list(...)); print( ls()); bbb }
# note bbb is not "declared"
ff( bbb=6, ccc=9) # prints [1] "bbb" "ccc", returns 6
[Package mvbutils version 2.8.232 Index]