rust/src/libnum
Brian Anderson 808b848eaf std: Add stability attributes to primitive numeric modules
The following are unstable:

- core::int, i8, i16, i32, i64
- core::uint, u8, u16, u32, u64
- core::int::{BITS, BYTES, MIN, MAX}, etc.
- std::int, i8, i16, i32, i64
- std::uint, u8, u16, u32, u64

The following are experimental:
- std::from_str::FromStr and impls - may need to return Result instead of Option
- std::int::parse_bytes, etc. - ditto
- std::num::FromStrRadix and impls - ditto
- std::num::from_str_radix - ditto

The following are deprecated:
- std::num::ToStrRadix and imples - Wrapper around fmt::radix. Wrong name (Str vs String)

See https://github.com/rust-lang/rust/wiki/Meeting-API-review-2014-06-23#uint
2014-06-24 17:23:05 -07:00
..
bigint.rs librustc: Remove the fallback to int from typechecking. 2014-06-24 17:18:48 -07:00
complex.rs Change to_str().to_string() to just to_str() 2014-06-06 09:56:59 +02:00
integer.rs Moved integer trait and functions to submodule 2014-06-09 16:36:40 +02:00
lib.rs std: Add stability attributes to primitive numeric modules 2014-06-24 17:23:05 -07:00
rational.rs librustc: Remove the fallback to int from typechecking. 2014-06-24 17:18:48 -07:00