-
Notifications
You must be signed in to change notification settings - Fork 3
/
DESCRIPTION
40 lines (40 loc) · 1.17 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
28
29
30
31
32
33
34
35
36
37
38
39
40
Package: gestalt
Title: Tools for Making and Combining Functions
Version: 0.2.0
Authors@R: person("Eugene", "Ha", , "[email protected]", c("aut", "cre"))
Description: Provides a suite of function-building tools centered around a
(forward) composition operator, %>>>%, which extends the semantics of the
'magrittr' %>% operator and supports 'Tidyverse' quasiquotation. It enables
you to construct composite functions that can be inspected and transformed as
list-like objects. In conjunction with %>>>%, a compact function constructor,
fn(), and a partial-application constructor, partial(), are also provided;
both support quasiquotation.
License: MIT + file LICENSE
URL: https://github.com/egnha/gestalt
BugReports: https://github.com/egnha/gestalt/issues
Depends:
R (>= 3.3.0)
Imports:
rlang (>= 1.0.0),
utils
Suggests:
magrittr (>= 1.5),
testthat (>= 3.0.0),
knitr,
rmarkdown
Collate:
'gestalt.R'
'utils.R'
'closure.R'
'compose.R'
'constant.R'
'partial.R'
'fn.R'
'context.R'
'posure.R'
RoxygenNote: 7.2.0
Roxygen: list(markdown = TRUE)
VignetteBuilder: knitr
Encoding: UTF-8
ByteCompile: true
Config/testthat/edition: 3