logicaltests {jqr} | R Documentation |
Logical tests
Description
Logical tests
Usage
allj(.data)
anyj(.data)
Arguments
.data |
input. This can be JSON input, or an object of class
|
Examples
# any
'[true, false]' %>% anyj
'[false, false]' %>% anyj
'[]' %>% anyj
# all
'[true, false]' %>% allj
'[true, true]' %>% allj
'[]' %>% allj
## many JSON inputs
'[true, false] [true, true] [false, false]' %>% anyj
'[true, false] [true, true] [false, false]' %>% allj
[Package jqr version 1.3.3 Index]