1
Fork 0

Remove Real trait and move methods into Float

This is part of the effort to simplify `std::num`, as tracked in issue #10387.
This commit is contained in:
Brendan Zabarauskas 2014-02-17 02:23:33 +11:00
parent 6fe775e2b5
commit 876eb931dc
9 changed files with 501 additions and 511 deletions

View file

@ -58,7 +58,7 @@ pub use hash::Hash;
pub use iter::{FromIterator, Extendable};
pub use iter::{Iterator, DoubleEndedIterator, RandomAccessIterator, CloneableIterator};
pub use iter::{OrdIterator, MutableDoubleEndedIterator, ExactSize};
pub use num::{Integer, Real, Num, NumCast, CheckedAdd, CheckedSub, CheckedMul};
pub use num::{Integer, Num, NumCast, CheckedAdd, CheckedSub, CheckedMul};
pub use num::{Signed, Unsigned, Round};
pub use num::{Primitive, Int, Float, ToStrRadix, ToPrimitive, FromPrimitive};
pub use path::{GenericPath, Path, PosixPath, WindowsPath};