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