-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathDESCRIPTION
More file actions
22 lines (22 loc) · 886 Bytes
/
DESCRIPTION
File metadata and controls
22 lines (22 loc) · 886 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
Package: listenv
Version: 0.10.1-9001
Depends:
R (>= 3.1.2)
Suggests:
R.utils,
R.rsp,
markdown
VignetteBuilder:
R.rsp
Title: Environments Behaving (Almost) as Lists
Authors@R: c(person("Henrik", "Bengtsson", role=c("aut", "cre", "cph"),
email = "henrikb@braju.com"))
Description: 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)'.
License: LGPL (>= 2.1)
LazyLoad: TRUE
URL: https://listenv.futureverse.org, https://github.com/futureverse/listenv
BugReports: https://github.com/futureverse/listenv/issues
RoxygenNote: 7.3.3
Roxygen: list(markdown = TRUE)
Encoding: UTF-8
Language: en-US