A short-circuit evaluation-like function similar to bash
's &&
operator.
Source: R/utils.R
grapes-and-and-grapes.Rd
The right-hand side (y
) is only evaluated if the left-hand side (x
) is identical to TRUE
.
Useful for verbosity (verbose %&&% message("Hello world!")
).