cumall.Rd
Cumulative all and any
cumall(x) cumany(x)
a logical vector.
logical
a logical vector
cumall(c(TRUE, TRUE, NA, TRUE, FALSE))#> [1] TRUE TRUE NA NA FALSEcumany(c(FALSE, FALSE, NA, TRUE, FALSE))#> [1] FALSE FALSE NA TRUE TRUE