summary refs log tree commit diff
path: root/src/libcore/num/mod.rs
AgeCommit message (Expand)AuthorLines
2016-10-12run rustfmt on libcore/num folderSrinivas Reddy Thatiparthy-6/+8
2016-10-07rewrite checked_{div,rem} to no contain any reference to panicsJorge Aparicio-8/+6
2016-10-04Rollup merge of #36902 - ollie27:stab_impls, r=alexcrichtonManish Goregaokar-3/+3
2016-10-03std: Stabilize and deprecate APIs for 1.13Alex Crichton-9/+3
2016-10-01std: Correct stability attributes for some implementationsOliver Middleton-3/+3
2016-09-22Rollup merge of #36423 - GuillaumeGomez:eq_impl, r=pnkfelixJonathan Turner-3/+3
2016-09-19Auto merge of #34942 - porglezomp:master, r=sfacklerbors-15/+11
2016-09-18Add missing Eq implementationsGuillaume Gomez-3/+3
2016-08-24Use `#[prelude_import]` in `libcore`.Jeffrey Seyfried-8/+2
2016-08-06Fix overflow checking in unsigned pow()Caleb Jones-15/+11
2016-07-28Add non-panicking abs() functions to all signed integer types.Jethro Beekman-0/+84
2016-07-15Improve float number exampleGuillaume Gomez-1/+1
2016-07-13Add examples for FpCategoryggomez-5/+24
2016-07-08Improve primitive integers documentationGuillaume Gomez-0/+32
2016-07-06Rollup merge of #34277 - ollie27:docs_num, r=steveklabnikSteve Klabnik-1/+0
2016-07-03std: Stabilize APIs for the 1.11.0 releaseAlex Crichton-11/+37
2016-06-14Add/improve num const docsOliver Middleton-1/+0
2016-06-09Implement Binary, Octal, LowerHex and UpperHex for Wrapping<T>Oliver Middleton-0/+28
2016-06-05core: mark relevant functions with #[rustc_inherit_overflow_checks].Eduard Burtescu-3/+3
2016-05-19Support 16-bit pointers as well as i/usizeJake Goulding-0/+21
2016-05-08Rollup merge of #33426 - sfackler:try-from, r=aturonManish Goregaokar-1/+94
2016-05-07Implement RFC 1542Steven Fackler-1/+94
2016-05-05Add an example to Wrapping's documentation.Philipp Matthias Schaefer-0/+11
2016-04-17Rollup merge of #33023 - tbu-:pr_wrapping_traits, r=alexcrichtonManish Goregaokar-1/+15
2016-04-16Implement `Display` and `Hash` for `std::num::Wrapping`Tobias Bucher-1/+15
2016-04-12Remove unused trait importsSeo Sanghyeon-1/+1
2016-04-10Match signed/unsigned integer type docsjethrogb-41/+53
2016-03-20Update snapshots to 2016-03-18 (235d774).Eduard Burtescu-3/+3
2016-03-17Add #[rustc_no_mir] to make tests pass with -Z orbit.Eduard Burtescu-0/+3
2016-03-12std: Clean out deprecated APIsAlex Crichton-1/+1
2016-03-11core: Make a new tracking issue for prelude traitsAlex Crichton-1/+1
2016-03-08doc: Fix a bunch of broken linksAlex Crichton-3/+3
2016-02-14Fix signed int checked_neg docsOliver Middleton-1/+1
2016-02-10Note rotate_{left,right} in wrapping_sh{lr} docsThomas Winwood-0/+14
2016-02-09Some docs for std::numSteve Klabnik-1/+12
2016-01-19fix the docs and simplify the implementation of unsigned wrapping opsOliver Schneider-50/+43
2016-01-16std: Stabilize APIs for the 1.7 releaseAlex Crichton-77/+45
2016-01-11std: Move overflowing ops to inherent methodsAlex Crichton-14/+658
2015-12-21Register new snapshotsAlex Crichton-161/+0
2015-12-13fix copy-paste typo in docs for wrapping_shrZach Reizner-2/+2
2015-12-10std: Remove deprecated functionality from 1.5Alex Crichton-6/+0
2015-12-05std: Stabilize APIs for the 1.6 releaseAlex Crichton-2/+36
2015-11-18Add missing annotations and some testsVadim Petrochenkov-0/+13
2015-11-16Make `min_value()` and `max_value()` const functionsAndrea Canciani-5/+5
2015-11-10Add examples to methods on integer typesToby Scrace-31/+342
2015-11-06Remove stability annotations from trait impl itemsVadim Petrochenkov-1/+0
2015-11-01Auto merge of #29316 - GBGamer:change-unchecked-div-generic, r=eddybbors-7/+163
2015-10-31Check unchecked_div|rem's specialisationNicholas Mazzuca-7/+163
2015-10-29Auto merge of #29129 - cuviper:impl-from-for-floats, r=alexcrichtonbors-3/+24
2015-10-28Comment how the significand limits lossless int->float conversionJosh Stone-0/+4