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
Nullable{T} has been deprecated and moved to the Nullables package (Replace Nullable{T} with Union{Some{T}, Void} #23642). Use Union{T, Nothing} instead, or Union{Some{T}, Nothing} if nothing is a possible value (i.e. Nothing <: T). isnull(x) can be replaced with x === nothing and unsafe_get/get can be dropped or replaced with coalesce. NullException has been removed.
Nullable{T} has been deprecated and moved to the Nullables package (Replace Nullable{T} with Union{Some{T}, Void} #23642). Use Union{T, Void} instead, or Union{Some{T}, Void} if nothing is a possible value (i.e. Void <: T). isnull(x) can be replaced with x === nothing and unsafe_get/get can be dropped or replaced with coalesce.
The text was updated successfully, but these errors were encountered:
https://docs.julialang.org/en/latest/NEWS/#Deprecated-or-removed-1 states the following. The 1st and the 3rd items are repetitive and conflicting.
shift!
andunshift!
? #23902)The text was updated successfully, but these errors were encountered: