-
Notifications
You must be signed in to change notification settings - Fork 4
/
DESCRIPTION
27 lines (27 loc) · 1.09 KB
/
DESCRIPTION
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
Package: lenses
Version: 0.0.3
Title: Elegant Data Manipulation with Lenses
Description: Provides tools for creating and using lenses to simplify data manipulation. Lenses are composable getter/setter pairs for working with data in a purely functional way. Inspired by the 'Haskell' library 'lens' (Kmett, 2012) <https://hackage.haskell.org/package/lens>. For a fairly comprehensive (and highly technical) history of lenses please see the 'lens' wiki <https://github.com/ekmett/lens/wiki/History-of-Lenses>.
Authors@R: c(person("Chris", "Hammill", , "[email protected]", c("aut", "cre", "trl")), person("Ben", "Darwin", , "", c("aut", "trl")))
License: MIT + file LICENSE
Encoding: UTF-8
LazyData: true
ByteCompile: true
Roxygen: list(markdown = TRUE)
RoxygenNote: 6.0.1
URL: http://cfhammill.github.io/lenses, https://github.com/cfhammill/lenses
BugReports: https://github.com/cfhammill/lenses/issues
Suggests:
testthat
Imports:
magrittr,
tidyselect,
rlang
Collate:
'verbs.R'
'lens.R'
'array-lenses.R'
'base-lenses.R'
'utils.R'
'dataframe-lenses.R'
'utils-pipe.R'