Examples for 'rlang::is_true'


Is object identical to TRUE or FALSE?

Aliases: is_true is_false

Keywords:

### ** Examples

is_true(TRUE)
[1] TRUE
is_true(1)
[1] FALSE
is_false(FALSE)
[1] TRUE
is_false(0)
[1] FALSE

[Package rlang version 1.1.4 Index]