]> git.lizzy.rs Git - rust.git/commit
auto merge of #18827 : bjz/rust/rfc369-numerics, r=alexcrichton
authorbors <bors@rust-lang.org>
Fri, 14 Nov 2014 05:37:17 +0000 (05:37 +0000)
committerbors <bors@rust-lang.org>
Fri, 14 Nov 2014 05:37:17 +0000 (05:37 +0000)
commit6f7081fad5889c7b41460103fc8abc98f3285c60
tree1c6785eb621540294408e54c1e811ba81e9412de
parenta58fc68223f177b6790a6b4027bb6761031e9fa8
parentc9e6bda9c758538e795ab387915543e076c35805
auto merge of #18827 : bjz/rust/rfc369-numerics, r=alexcrichton

This implements a considerable portion of rust-lang/rfcs#369 (tracked in #18640). Some interpretations had to be made in order to get this to work. The breaking changes are listed below:

[breaking-change]

- `core::num::{Num, Unsigned, Primitive}` have been deprecated and their re-exports removed from the `{std, core}::prelude`.
- `core::num::{Zero, One, Bounded}` have been deprecated. Use the static methods on `core::num::{Float, Int}` instead. There is no equivalent to `Zero::is_zero`. Use `(==)` with `{Float, Int}::zero` instead.
- `Signed::abs_sub` has been moved to `std::num::FloatMath`, and is no longer implemented for signed integers.
- `core::num::Signed` has been removed, and its methods have been moved to `core::num::Float` and a new trait, `core::num::SignedInt`. The methods now take the `self` parameter by value.
- `core::num::{Saturating, CheckedAdd, CheckedSub, CheckedMul, CheckedDiv}` have been removed, and their methods moved to `core::num::Int`. Their parameters are now taken by value. This means that
- `std::time::Duration` no longer implements `core::num::{Zero, CheckedAdd, CheckedSub}` instead defining the required methods non-polymorphically.
- `core::num::{zero, one, abs, signum}` have been deprecated. Use their respective methods instead.
- The `core::num::{next_power_of_two, is_power_of_two, checked_next_power_of_two}` functions have been deprecated in favor of methods defined a new trait, `core::num::UnsignedInt`
- `core::iter::{AdditiveIterator, MultiplicativeIterator}` are now only implemented for the built-in numeric types.
- `core::iter::{range, range_inclusive, range_step, range_step_inclusive}` now require `core::num::Int` to be implemented for the type they a re parametrized over.
12 files changed:
src/libcollections/vec.rs
src/libcore/cmp.rs
src/libcore/slice.rs
src/libcore/str.rs
src/librustc/lint/builtin.rs
src/libserialize/json.rs
src/libstd/collections/hash/table.rs
src/libstd/time/duration.rs
src/libsyntax/ast.rs
src/libsyntax/parse/parser.rs
src/libtest/lib.rs
src/libtime/lib.rs