There is Missings.passmissing as a wrapper, but also note that
function blah(x, y, z)
if any(ismissing, (x, y, z))
missing
else
"blah"
end
end
also compiles to efficient code.
There is Missings.passmissing as a wrapper, but also note that
function blah(x, y, z)
if any(ismissing, (x, y, z))
missing
else
"blah"
end
end
also compiles to efficient code.