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)
}

Try the BBmisc package in your browser

Any scripts or data that you put into this service are public.

BBmisc documentation built on Sept. 29, 2022, 5:12 p.m.