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)
        }
patelm9/centipede documentation built on Dec. 4, 2020, 3:09 a.m.