or: Combine predicate functions to check if any are TRUE

View source: R/predicates.R

orR Documentation

Combine predicate functions to check if any are TRUE

Description

Combine predicate functions to check if any are TRUE

Usage

or(...)

Arguments

...

Predicate functions

Value

A predicate function

Examples

or(not_null, not_na)(1)
or(not_null, not_na)(NULL)

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

Related to or in maybe...