R/all_true.R

Defines functions all_true

Documented in all_true

#' Aggregate logical function
#' @description Returns TRUE if all values in a logical vector are TRUE
#' @export

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