Hi!
I was trying to create new arrays a, b with the not missing elements of A and B, respectively and I want to exclude Missing
from the element type of a
and b
.
Sadly, Base.nonmissingtype
and Core.Compiler.typesubtract
aren’t exported. Is it possible to export those functions?
As a workaround, I’m using collect(skipmissing(...
over a and b just to get nonmissingtype
called.
Best regards,