summary refs log tree commit diff
path: root/src/libcoretest/num
AgeCommit message (Expand)AuthorLines
2015-10-16Reject "+" and "-" when parsing floats.Robin Kruppe-0/+12
2015-08-22Auto merge of #27871 - alexcrichton:stabilize-libcore, r=aturonbors-27/+56
2015-08-18Auto merge of #27823 - eefriedman:float-dep-core, r=alexcrichtonbors-2/+16
2015-08-17core: Shuffle around float parsingAlex Crichton-28/+27
2015-08-17std: Clean up primitive integer modulesAlex Crichton-1/+31
2015-08-17Remove dependencies on libm functions from libcore.Eli Friedman-2/+16
2015-08-14Auto merge of #27786 - alexcrichton:start-testing-msvc, r=brsonbors-2/+21
2015-08-13Get `make check` working on MSVCAlex Crichton-2/+21
2015-08-12Mention that the fast path is broken without SSE.Robin Kruppe-0/+7
2015-08-08Accurate decimal-to-float parsing routines.Robin Kruppe-0/+366
2015-08-08Add various methods to Bignum:Robin Kruppe-0/+89
2015-08-08Enlarge Bignum type from 1152 to 1280 bits.Robin Kruppe-1/+1
2015-07-19optimize from_str_radixarthurprs-2/+9
2015-05-06core: use banker's rounding for the exact mode in flt2dec.Kang Seonghoon-5/+18
2015-05-06core: updated for the master changes.Kang Seonghoon-98/+91
2015-05-06core: fixed a slight bug.Kang Seonghoon-3/+17
2015-05-06core: fixed typos and revised comments in flt2dec.Kang Seonghoon-1/+1
2015-05-06core: tweaked flt2dec to match the casing of the older formatting code.Kang Seonghoon-32/+32
2015-05-06core: added core::num::flt2dec for floating-point formatting.Kang Seonghoon-0/+1675
2015-04-24Change name of unit test sub-module to "tests".Johannes Oertel-1/+1
2015-04-21std: Bring back f32::from_str_radix as an unstable APIAlex Crichton-67/+58
2015-04-03Auto merge of #23832 - petrochenkov:usize, r=aturonbors-6/+6
2015-04-01Fallout from changes for overflow-checking during constant evaluation.Felix S. Klock II-1/+1
2015-03-30Fix the falloutVadim Petrochenkov-6/+6
2015-03-05Remove integer suffixes where the types in compiled code are identical.Eduard Burtescu-4/+4
2015-03-03Auto merge of #22532 - pnkfelix:arith-overflow, r=pnkfelix,eddybbors-4/+4
2015-03-03Accommodate arith-overflow in `core::num`, `std::num`, `coretest::num`.Felix S. Klock II-4/+4
2015-03-02Use `const`s instead of `static`s where appropriateFlorian Zeitz-10/+10
2015-03-02Rollup merge of #22504 - GuillaumeGomez:audit-integer-libcore, r=ManishearthManish Goregaokar-26/+2
2015-03-01Remove int/uint from libstd/lib.rsGuillaume Gomez-26/+2
2015-03-01Make Int::pow() take exp as u32 instead usizeGuillaume Gomez-0/+11
2015-02-24Add missing `fn`Michał Krasnoborski-1/+1
2015-02-24Stop parsing "-" as integer, fixes #22745Michał Krasnoborski-0/+5
2015-02-10Deprecating i/u suffixes in libcoretestAlfie John-4/+4
2015-01-30rollup merge of #21631: tbu-/isize_policeAlex Crichton-7/+7
2015-01-30std: Stabilize FromStr and parseAlex Crichton-47/+47
2015-01-30Remove all `i` suffixesTobias Bucher-7/+7
2015-01-20std: Rename Show/String to Debug/DisplayAlex Crichton-2/+2
2015-01-06rollup merge of #20607: nrc/kindsAlex Crichton-1/+1
2015-01-06Register new snapshotsAlex Crichton-4/+2
2015-01-07markers -> markerNick Cameron-1/+1
2015-01-07Change `std::kinds` to `std::markers`; flatten `std::kinds::marker`Nick Cameron-1/+1
2015-01-05Modernize macro_rules! invocationsKeegan McAllister-4/+5
2015-01-05Rename macro_escape to macro_useKeegan McAllister-2/+4
2015-01-05Stop using macro_escape as an inner attributeKeegan McAllister-4/+5
2015-01-03Remove deprecated functionalityAlex Crichton-19/+19
2015-01-03use assoc types in binop traitsJorge Aparicio-3/+3
2015-01-02std: Stabilize the prelude moduleAlex Crichton-0/+4
2014-12-18librustc: Always parse `macro!()`/`macro![]` as expressions if notPatrick Walton-14/+14
2014-12-13libcoretest: fix unit testsJorge Aparicio-20/+22