about summary refs log tree commit diff
path: root/src/libstd/num/strconv.rs
AgeCommit message (Expand)AuthorLines
2015-04-21Model lexer: Fix remaining issuesPiotr Czarnecki-2/+0
2015-04-14test: Fixup many library unit testsAlex Crichton-14/+14
2015-04-01Fallout in public-facing and semi-public-facing libsNiko Matsakis-3/+3
2015-03-31Stabilize std::numAaron Turon-0/+1
2015-03-26Mass rename uint/int to usize/isizeAlex Crichton-26/+26
2015-03-18Register new snapshotsAlex Crichton-7/+0
2015-03-16impl<T> [T]Jorge Aparicio-0/+1
2015-03-16impl strJorge Aparicio-0/+1
2015-03-16impl charJorge Aparicio-0/+3
2015-03-05Remove integer suffixes where the types in compiled code are identical.Eduard Burtescu-7/+7
2015-03-03Auto merge of #22532 - pnkfelix:arith-overflow, r=pnkfelix,eddybbors-4/+5
2015-03-03Rollup merge of #22876 - Florob:const, r=nikomatsakisManish Goregaokar-2/+2
2015-03-03Accommodate arith-overflow in `core::num`, `std::num`, `coretest::num`.Felix S. Klock II-4/+5
2015-03-02core: Audit num module for int/uintBrian Anderson-2/+2
2015-03-02Use `const`s instead of `static`s where appropriateFlorian Zeitz-2/+2
2015-02-18Remove `i`, `is`, `u`, or `us` suffixes that are not necessary.Niko Matsakis-3/+3
2015-02-15Fix the falloutVadim Petrochenkov-7/+7
2015-02-04remove all kind annotations from closuresJorge Aparicio-2/+2
2015-02-04Deprecate in-tree `rand`, `std::rand` and `#[derive(Rand)]`.Huon Wilson-0/+1
2015-01-21Fallout from stabilization.Aaron Turon-2/+2
2015-01-05Merge `UnicodeChar` and `CharExt`.Huon Wilson-1/+1
2015-01-03sed -i -s 's/#\[deriving(/#\[derive(/g' **/*.rsJorge Aparicio-3/+3
2015-01-03sed -i -s 's/\bmod,/self,/g' **/*.rsJorge Aparicio-2/+2
2015-01-02merge `*SliceExt` traits, use assoc types in `SliceExt`, `Raw[Mut]Ptr`Jorge Aparicio-1/+1
2015-01-02Fallout - change array syntax to use `;`Nick Cameron-1/+1
2014-12-31std: unbox closures used in let bindingsJorge Aparicio-2/+2
2014-12-23Rename and namespace `FPCategory`Tobias Bucher-4/+5
2014-12-21Fallout of std::str stabilizationAlex Crichton-1/+1
2014-12-21Remove a ton of public reexportsCorey Farwell-3/+3
2014-12-19libstd: use `#[deriving(Copy)]`Jorge Aparicio-7/+3
2014-12-14std: Collapse SlicePrelude traitsAlex Crichton-5/+3
2014-12-13libstd: use unboxed closuresJorge Aparicio-1/+5
2014-12-09Rollback accidental documentation changesTobias Bucher-29/+21
2014-12-08librustc: Make `Copy` opt-in.Niko Matsakis-19/+32
2014-12-06libstd: remove unnecessary `to_string()` callsJorge Aparicio-8/+8
2014-11-27Documentation fix for std::num::strconvBarosl Lee-41/+35
2014-11-25/** -> ///Steve Klabnik-25/+26
2014-11-21Fix various deprecation warnings from char changesBrian Anderson-1/+2
2014-11-17Switch to purely namespaced enumsSteven Fackler-0/+4
2014-11-16Move ToString to collections::stringBrendan Zabarauskas-1/+1
2014-11-16Move FromStr to core::strBrendan Zabarauskas-232/+21
2014-11-14auto merge of #18880 : barosl/rust/doc-fail-to-panic, r=alexcrichtonbors-6/+6
2014-11-13Deprecate Num, Unsigned and PrimitiveBrendan Zabarauskas-1/+1
2014-11-13Deprecate Zero and One traitsBrendan Zabarauskas-9/+9
2014-11-13Deprecate Bounded traitBrendan Zabarauskas-3/+2
2014-11-13Move checked arithmetic operators into Int traitBrendan Zabarauskas-4/+4
2014-11-12Fix remaining documentation to reflect fail!() -> panic!()Barosl Lee-6/+6
2014-11-07Fixing #18659juxiliary-1/+17
2014-11-06Prelude: rename and consolidate extension traitsAaron Turon-2/+2
2014-11-04Simplify float string conversion function furtherBrendan Zabarauskas-151/+105