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)
        }
meerapatelmd/centipede documentation built on Jan. 1, 2021, 9:27 a.m.