powered by
Provides null coalescing functionality, returning the first non-NULL argument
a %||% ba %||% b
a %||% b
Returns a if not NULL, otherwise returns b
a
b
First value to check
Second value (default) to use if first is NULL
\