`cumany()`/`cumall()` should always be NA after the first NA is seen. Currently: ``` r cumany(c(NA, NA, NA)) # [1] NA TRUE TRUE cumall(c(NA, NA, NA)) # [1] NA TRUE TRUE ```