about summary refs log tree commit diff
path: root/src/libcore/num/mod.rs
AgeCommit message (Expand)AuthorLines
2017-05-20Correct some stability versionsOliver Middleton-45/+45
2017-05-12Remove some unused macros from the rust codebaseest31-7/+0
2017-04-29Update stage0 bootstrap compilerAlex Crichton-72/+0
2017-04-29Simplify `checked_next_power_of_two` functionIrfan Hudda-6/+1
2017-04-29Add comment about overflow behavior for next_power_of_twoIrfan Hudda-0/+3
2017-04-28Add helper functions for `next_power_of_two` and `checked_next_power_of_two`Irfan Hudda-10/+14
2017-04-20Remove float_extrasJosh Stone-51/+0
2017-04-20Remove num::{Zero,One}Josh Stone-72/+0
2017-04-20remove redundant wrapping_subIrfan Hudda-1/+1
2017-04-19next_power_of_two panic on overflowIrfan Hudda-2/+8
2017-04-18Improve documentation of next_power_of_twoIrfan Hudda-1/+3
2017-04-03Move libXtest into libX/testsStjepan Glavina-1/+1
2017-03-22Various fixes to wording consistency in the docsStjepan Glavina-4/+4
2017-03-19Rollup merge of #40521 - TimNN:panic-free-shift, r=alexcrichtonCorey Farwell-18/+99
2017-03-19Rollup merge of #40281 - jimmycuadra:try-from-from-str, r=aturonCorey Farwell-3/+3
2017-03-18add inline attributes to stage 0 methodsTim Neumann-0/+4
2017-03-15Rename TryFrom's associated type and implement str::parse using TryFrom.Jimmy Cuadra-3/+3
2017-03-15make shift builtins panic-free with new unchecked_sh* intrinsicsTim Neumann-18/+95
2017-03-13Remove function invokation parens from documentation links.Corey Farwell-5/+5
2017-02-04Fix TryFrom for i128/u128Oliver Middleton-4/+4
2017-02-03Bump version, upgrade bootstrapAlex Crichton-75/+3
2016-12-30Fix rebase falloutest31-0/+21
2016-12-30Such large. Very 128. Much bits.Simonas Kazlauskas-12/+98
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