tidyverse / funs

Collection of low-level functions for working with vctrs
Other
34 stars 7 forks source link

A na.rm option for cumany? #52

Closed iago-pssjd closed 3 years ago

iago-pssjd commented 4 years ago

Doing

cumany(c(NA,3) < 2)

I get NA NA. I would expect an option to do something like

cumany(c(NA,3, na.rm = TRUE) < 2)

in order to get NA FALSE. Is there a way?

Thank you!

romainfrancois commented 3 years ago

copied to #39