summary refs log tree commit diff
path: root/src/libcore/num
AgeCommit message (Expand)AuthorLines
2015-10-16Reject "+" and "-" when parsing floats.Robin Kruppe-1/+6
2015-09-04Fix for issue #28012: pow overflow inconsistencyPeter Reid-15/+11
2015-09-03Elide lifetimes in libcoreManish Goregaokar-7/+7
2015-08-26Make iter::order functions into methods on IteratorSteven Fackler-3/+1
2015-08-22Auto merge of #27871 - alexcrichton:stabilize-libcore, r=aturonbors-110/+126
2015-08-18Auto merge of #27823 - eefriedman:float-dep-core, r=alexcrichtonbors-279/+0
2015-08-17core: Shuffle around float parsingAlex Crichton-100/+96
2015-08-17std: Clean up primitive integer modulesAlex Crichton-10/+30
2015-08-17Remove dependencies on libm functions from libcore.Eli Friedman-279/+0
2015-08-15std: Add issues to all unstable featuresAlex Crichton-1/+2
2015-08-15core: Fill out issues for unstable featuresAlex Crichton-12/+24
2015-08-14Auto merge of #27641 - nikomatsakis:soundness-rfc-1214, r=nrcbors-2/+2
2015-08-13Auto merge of #27684 - alexcrichton:remove-deprecated, r=aturonbors-17/+0
2015-08-12Fallout in libs -- misc missing bounds uncovered by WF checks.Niko Matsakis-2/+2
2015-08-12Remove all unstable deprecated functionalityAlex Crichton-17/+0
2015-08-12Mention that the fast path is broken without SSE.Robin Kruppe-3/+11
2015-08-08Accurate decimal-to-float parsing routines.Robin Kruppe-15/+2420
2015-08-08Add various methods to Bignum:Robin Kruppe-5/+141
2015-08-08Enlarge Bignum type from 1152 to 1280 bits.Robin Kruppe-6/+6
2015-08-08Make core::num::dec2flt::strategy::grisu::Fp methods public.Robin Kruppe-3/+3
2015-08-03syntax: Implement #![no_core]Alex Crichton-8/+11
2015-07-28Replace occurences of illegal in user facing docsSimonas Kazlauskas-4/+4
2015-07-20std: Create separate docs for the primitivesBrian Anderson-12/+0
2015-07-19optimize from_str_radixarthurprs-11/+25
2015-07-13Auto merge of #26981 - wthrowe:div_docs, r=Gankrobors-4/+4
2015-07-11Correct and clarify integer division rounding docsWilliam Throwe-4/+4
2015-07-11Auto merge of #26878 - Esption:master, r=pnkfelixbors-1/+1
2015-07-08'iff' for docs to 'if and only if'Esption-1/+1
2015-07-08Use wrapping_div call and correct the feature nameMathijs van de Nes-2/+2
2015-07-08Implement Div for Wrapping<T>Mathijs van de Nes-0/+10
2015-07-08Fixed some occurrences of 'if' being spelled 'iff'Esption-1/+1
2015-07-05Auto merge of #26473 - Eljay:missing_docs, r=alexcrichtonbors-0/+30
2015-07-04Add missing #[inline] to min_value/max_value on integersUlrik Sverdrup-0/+2
2015-06-27std: Avoid missing fns on i686-pc-windows-msvcAlex Crichton-6/+54
2015-06-21Temp fix for all constants that are missing docs.Eljay-0/+30
2015-06-20Update mod.rsWei-Ming Yang-2/+1
2015-06-17std: Hide some internal functions more aggressivelyAlex Crichton-2/+4
2015-06-17std: Stabilize the remaining wrapping_* functionsAlex Crichton-10/+10
2015-06-17std: Deprecate f{32,64}::consts::PI_2Alex Crichton-0/+2
2015-06-17core: Split apart the global `core` featureAlex Crichton-23/+34
2015-06-10Removed many pointless calls to *iter() and iter_mut()Joshua Landau-3/+3
2015-06-07change some statics to constantsOliver 'ker' Schneider-4/+1
2015-05-27Remove mentions of int / uint from the isize / usize docsJake Goulding-8/+0
2015-05-21Standardize on `$t:ty`Tamir Duberstein-5/+5
2015-05-21Use `Self` to simplifyTamir Duberstein-109/+109
2015-05-19Fix for https://github.com/rust-lang/rust/pull/25583Steve Klabnik-1/+1
2015-05-19Rollup merge of #25583 - steveklabnik:gh25517, r=alexcrichtonSteve Klabnik-8/+4
2015-05-18std: Make abs() panic on overflow in debug modeAlex Crichton-3/+12
2015-05-18Add example for from_str_radixSteve Klabnik-8/+4
2015-05-09Auto merge of #24612 - lifthrasiir:flt2dec, r=pnkfelixbors-0/+2231