grapes-equals-grapes: Equivalency operators

Description Usage Examples

Description

Equivalency operators that handle NAs, NULLs, and empty lists without throwing an error

Usage

1
x %==% y

Examples

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
a <- NA
a == NA
a %==% NA

b <- NULL
b == NULL
b %==% NULL

x <- list()
x == list()
x %==% list()

a %==% b
a %!=% b

Prometheus77/actools documentation built on March 7, 2020, 11:01 a.m.