You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
in JuliaLang/julia#58836, triage desires to remove the promote_rule defined for Pair (and Some) as to make it consistent with every other container type in the language
I am going through the results of the Nanosoldier run so as to avoid as much potential downstream impact as possible.
I noticed that the implementation here relies on the fact that Pair promotes pretending to be covariant (like Tuple is) when in fact it is not.
looking at the code, my first impression is that it would suffice here to set const SubSet = Pair as a bare alias rather than Pair{<:Integer,<:AbstractVector{<:Integer}} , do you have any thoughts on that approach?