R/any_true.R

Defines functions any_true

Documented in any_true

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

any_true <-
        function(vector) {
                any(vector == TRUE)
        }
patelm9/centipede documentation built on Dec. 4, 2020, 3:09 a.m.