Returns first non-missing, non-null argument, otherwise NULL.
NULL
coalesce(...)
...
[any] Arguments.
[any].
f = function(x,y) { print(coalesce(NULL, x, y)) } f(y=3)
## [1] 3