R/all_false.R

Defines functions all_false

Documented in all_false

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

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