-
Notifications
You must be signed in to change notification settings - Fork 1
Open
Labels
enhancement 💎Feature enhancementFeature enhancement
Description
currently
is_true(c(2, 3, NA))
#> [1] NA NA NAbut, I guess should be
is_true(c(2, 3, NA))
[1] FALSE FALSE FALSEother things:
- replace
which()with!is.na(x) & x(or!is.na(x) & !x) - simplify
is_true()tois_true(to_boolean(x)) - simplify
is_false()tois_false(to_boolean(x))
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
enhancement 💎Feature enhancementFeature enhancement