is_TRUE and is_true tests if x is TRUE
is_FALSE and is_false tests if x is FALSE
true_or_false returns whether the condition is true or false

Arguments

x

an R object

Examples

is_true(TRUE)
#> [1] TRUE
is_true(FALSE)
#> [1] FALSE
is_false(TRUE)
#> [1] FALSE
is_false(FALSE)
#> [1] TRUE
true_or_false(TRUE)
#> [1] TRUE
true_or_false(FALSE)
#> [1] FALSE

is_true(1) # FLASE
#> [1] FALSE
is_false("FALSE") # FALSE
#> [1] FALSE