Open ElOceanografo opened 5 years ago
Realized this is a partial duplicate of https://github.com/JuliaLang/julia/issues/32224. This PR will add missing methods for atan
, hypot
, and angle
, but not all the similar functions exported by Base.math
.
I noticed this trying to convert a
missing
angle usingdeg2rad
,but it turns out there are a number of other
Base.math
functions with no method defined forMissing
s (e.g.asec
,acoth
,hypot
...) . The loop here only definesMissing
methods for a subset of the module's exported functions. Fix should be as easy as adding those names to the loop (unless there's some good reason to keep those methods undefined).