Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

The paragraph in deprecation documentation does not look correct. #25556

Closed
sambitdash opened this issue Jan 14, 2018 · 1 comment · Fixed by #25573
Closed

The paragraph in deprecation documentation does not look correct. #25556

sambitdash opened this issue Jan 14, 2018 · 1 comment · Fixed by #25573

Comments

@sambitdash
Copy link
Contributor

https://docs.julialang.org/en/latest/NEWS/#Deprecated-or-removed-1 states the following. The 1st and the 3rd items are repetitive and conflicting.

  • 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.
  • unshift! and shift! have been renamed to pushfirst! and popfirst! (Rename shift! and unshift! ? #23902)
  • 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.
@JeffBezanson
Copy link
Member

Thanks. Looks like a rebasing issue probably.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging a pull request may close this issue.

2 participants