R/utils.R
grapes-ss-grapes.Rd
This operator returns the left side if it's not NULL, otherwise it returns the right side.
NULL
a %ss% b
The left side value to check.
The right side value to use if a is NULL.
a
a if it is not NULL, otherwise b.
b
NULL %ss% 10 #> [1] 10 5 %ss% 10 #> [1] 5