and: Combine predicate functions to check if all are TRUE

View source: R/predicates.R

andR Documentation

Combine predicate functions to check if all are TRUE

Description

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)
and(not_null, not_na)(NULL)

maybe documentation built on Aug. 7, 2023, 5:11 p.m.

Related to and in maybe...