Skip to contents

Combine predicate functions to check if all are TRUE

Usage

and(...)

Arguments

...

Predicate functions

Value

A predicate function

Examples

and(not_null, not_na)(1)
#> [1] TRUE
and(not_null, not_na)(NULL)
#> [1] FALSE