R/isFALSE.R

Defines functions isFALSE

Documented in isFALSE

#' A wrapper for \code{identical(x, FALSE)}.
#'
#' @param x [any]\cr
#'   Your object.
#' @return [\code{logical(1)}].
#' @export
#' @examples
#' isFALSE(0)
#' isFALSE(FALSE)
isFALSE = function(x) {
  identical(x, FALSE)
}
berndbischl/BBmisc documentation built on Jan. 6, 2023, 12:32 p.m.