r-cran-listenv 0.6.0-1build1 source package in Ubuntu

Changelog

r-cran-listenv (0.6.0-1build1) artful; urgency=medium

  * No-change rebuild to pick up r-api-3.4

 -- Graham Inggs <email address hidden>  Wed, 27 Sep 2017 09:29:28 +0000

Upload details

Uploaded by:
Graham Inggs
Uploaded to:
Artful
Original maintainer:
Debian Med
Architectures:
any
Section:
misc
Urgency:
Medium Urgency

See full publishing history Publishing

Series Pocket Published Component Section
Bionic release universe misc

Downloads

File Size SHA-256 Checksum
r-cran-listenv_0.6.0.orig.tar.gz 30.5 KiB a737f08123b8bd67b63bb9843d0b6316408516d831203df8c369f3e32a48d84f
r-cran-listenv_0.6.0-1build1.debian.tar.xz 2.0 KiB 43868c01ec3de7eeb1ffe919bfb103ccfcd31ef42397e9616c9865eed39ceb38
r-cran-listenv_0.6.0-1build1.dsc 2.0 KiB 59679abda3651639c85bdc77aeec702b85a997715ce07ea2b92ce75d9fb0314b

View changes file

Binary packages built by this source

r-cran-listenv: R package: 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)'.