Environments Behaving (Almost) as Lists
Transpose a 'listenv' array by permuting its dimensions
List representation of a list environment
Get elements of list environment
Set an element of list environment
Set the dimension of an object
Get name of variable for a specific element of list environment
Number of elements in list environment
Create a list environment
Name map for elements of list environment
Names of elements in list environment
Helper function to infer target from expression and environment
Removes the dimension of an object
List environments are environments that have list-like properties. For instance, the elements of a list environment are ordered and can be accessed and iterated over using index subsetting, e.g. 'x <- listenv(a = 1, b = 2); for (i in seq_along(x)) x[[i]] <- x[[i]] ^ 2; y <- as.list(x)'.
Useful links