Is there a standard way to add missing-propagation

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.

2 Likes