Chain multiple argument conditions

a1 %&% a2

Arguments

a1

First condition

a2

Second condition

Value

The concatenation of both conditions

Examples

checklist <- "numeric" %&% (~ . != 0) %&% (~ abs(.) < 10) f <- def(a = "numeric", b = checklist, { a / b })