powered by
Internal Coalesce Operator Returns the left-hand side if it is not NULL, otherwise the right-hand side.
x %||% y
If x is not NULL, returns x; else y.
Left-hand value.
Right-hand value.