R/any_false.R

Defines functions any_false

Documented in any_false

#' Aggregate logical function
#' @description Returns TRUE if at least 1 of the values in a logical vector is FALSE
#' @export

any_false <-
        function(vector) {
                any(vector == FALSE)
        }
meerapatelmd/centipede documentation built on Jan. 1, 2021, 9:27 a.m.