| isFALSE {xfun} | R Documentation |
FALSEFor R versions lower than 3.5.0, this function is a simple abbreviation of
identical(x, FALSE). For higher R versions, this function calls
base::isFALSE().
isFALSE(x)
x |
An R object. |
This function will be deprecated in the future. We recommend that you
use base::isFALSE() instead. If you have to support R versions lower
than 3.5.0, you may use identical(x, FALSE), but please note that it is
not equivalent to base::isFALSE().
library(xfun)
isFALSE(TRUE) # false
isFALSE(FALSE) # true
isFALSE(c(FALSE, FALSE)) # false