Source: r-cran-listenv Standards-Version: 4.7.4 Maintainer: Debian R Packages Maintainers Uploaders: Michael R. Crusoe , Section: gnu-r Testsuite: autopkgtest-pkg-r Build-Depends: debhelper-compat (= 14), dh-r, r-base-dev, r-pkg-team-core-architecture, Vcs-Browser: https://salsa.debian.org/r-pkg-team/r-cran-listenv Vcs-Git: https://salsa.debian.org/r-pkg-team/r-cran-listenv.git Homepage: https://cran.r-project.org/package=listenv Package: r-cran-listenv Architecture: all Depends: ${R:Depends}, ${misc:Depends}, r-pkg-team-core-architecture, Recommends: ${R:Recommends}, Suggests: ${R:Suggests}, Description: Environments Behaving (Almost) as Lists 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)'.