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
Since Julia v0.7, the Nullable{T} type has been moved from base Julia to an external package, in favor of writing Union{T,Nothing}.
Unfortunately, the more pleasant syntax T? for such "maybe types" has not yet arrived (see JuliaLang/julia#22682). When it does, we should migrate from Nullables to maybe types.
The text was updated successfully, but these errors were encountered:
Since Julia v0.7, the
Nullable{T}
type has been moved from base Julia to an external package, in favor of writingUnion{T,Nothing}
.Unfortunately, the more pleasant syntax
T?
for such "maybe types" has not yet arrived (see JuliaLang/julia#22682). When it does, we should migrate from Nullables to maybe types.The text was updated successfully, but these errors were encountered: