Aliases: checkDisjunct check_disjunct assertDisjunct assert_disjunct testDisjunct test_disjunct expect_disjunct
Keywords:
### ** Examples testDisjunct(1L, letters)
[1] TRUE
testDisjunct(c("a", "z"), letters)
[1] FALSE
# x is not converted before the comparison (except for numerics) testDisjunct(factor("a"), "a")
[1] FALSE
testDisjunct(1, "1")
[1] FALSE
testDisjunct(1, as.integer(1))
[1] FALSE