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

itrunc -> trunc, etc, fix Int128 vs float comparisons #9133

Merged
merged 5 commits into from
Nov 25, 2014
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
NEWS item
  • Loading branch information
simonbyrne committed Nov 25, 2014
commit 1661d8424148a4be77ae769830dbb8ce16e7cb79
6 changes: 6 additions & 0 deletions NEWS.md
Original file line number Diff line number Diff line change
Expand Up @@ -140,6 +140,12 @@ Deprecated or removed

* `{...}` syntax is deprecated in favor of `Any[...]` ([#8578]).

* `itrunc`, `ifloor`, `iceil` and `iround` are deprecated in favour of
`trunc{T<:Integer}(T,x)`, `floor{T<:Integer}(T,x)`, etc.. `trunc` is now
always bound-checked;`Base.unsafe_trunc` provides the old unchecked `itrunc`
behaviour ([#9133]).


Julia v0.3.0 Release Notes
==========================

Expand Down