powered by
This is a convenience function for creating named variables from lists. It's particularly useful for "unpacking" the results of calls to .C.
.C
extract.named( l, to=parent.frame())
a list, with some named elements (no named elements is OK but pointless)
environment
nothing directly, but will create variables
# 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