Skip to contents

Function to check if none of the elements are true

Usage

none(x, ...)

Arguments

x

Boolean vector

...

arguments inherited from all

Value

A boolean vector of length 1.

Examples

none(c(FALSE, FALSE, TRUE))
#> [1] FALSE
none(c(FALSE, FALSE, FALSE))
#> [1] TRUE