Returns the second operand if the first operand is NULL, FALSE, 0, NA, an empty list, or an empty string. Otherwise returns the first operand.
Examples
FALSE %none% 2 # returns 2
#> [1] 2
0 %none% 2 # returns 2
#> [1] 2
NA %none% 2 # returns 2
#> [1] 2
list() %none% 2 # returns 2
#> [1] 2
"" %none% 2 # returns 2
#> [1] 2
1 %none% 2 # returns 1
#> [1] 1