unpackList {PBSmodelling}R Documentation

Unpack List Elements into Variables

Description

Make local or global variables (depending on the scope specified) from the named components of a list.

Usage

unpackList(x, scope="L")

Arguments

x named list to unpack.
scope If "L", create variables local to the parent frame that called the function. If "G", create global variables.

Value

A character vector of unpacked variable names.

Author(s)

Alex Couture-Beil, Malaspina University-College, Nanaimo BC

See Also

packList, readList, writeList

Examples

x <- list(a=21,b=23);
unpackList(x);
print(a);

[Package PBSmodelling version 2.55.175 Index]