about summary refs log tree commit diff
path: root/src/libstd/num/uint_macros.rs
AgeCommit message (Expand)AuthorLines
2014-05-27std: Rename strbuf operations to stringRicho Healey-15/+15
2014-05-24core: rename strbuf::StrBuf to string::StringRicho Healey-1/+1
2014-05-22libstd: Remove `~str` from all `libstd` modules except `fmt` and `str`.Patrick Walton-17/+17
2014-05-15std: Delegate some integer formatting to core::fmtAlex Crichton-18/+10
2014-05-08Handle breakage after libcore splitKevin Ballard-0/+3
2014-05-08More fallout from removing FromIterator on ~[T]Kevin Ballard-1/+1
2014-05-07core: Inherit the specific numeric modulesAlex Crichton-204/+2
2014-05-03Add lint check for negating uint literals and variables.Falco Hirschenberger-0/+1
2014-04-27Rewrote documentation for parse_bytes and to_str_bytes in {int, uint}_macros.rsJacob Hegna-5/+14
2014-04-22Removed trailing whitespace in on line 242 in int_macros.rs and on line 156 i...Jacob Hegna-1/+1
2014-04-22Added examples for parse_bytes(buf: &[u8], radix: uint) in int_macros.rs and ...Jacob Hegna-0/+10
2014-04-18Replace all ~"" with "".to_owned()Richo Healey-15/+16
2014-04-18std: Make ~[T] no longer a growable vectorAlex Crichton-2/+2
2014-03-28Convert most code to new inner attribute syntax.Brian Anderson-2/+2
2014-02-24Remove std::num::ToStrRadix from the preludeBrendan Zabarauskas-0/+1
2014-02-23Remove all ToStr impls, add Show implsAlex Crichton-8/+0
2014-02-21auto merge of #12382 : bjz/rust/fmt-int, r=alexcrichtonbors-1/+1
2014-02-22Reduce reliance on `to_str_radix`Brendan Zabarauskas-1/+1
2014-02-22Move std::num::Integer to libnumBrendan Zabarauskas-111/+0
2014-02-17Rename Bitwise::population_count to Bitwise::count_ones and add Bitwise::coun...Brendan Zabarauskas-7/+18
2014-02-13Removed num::OrderableMichael Darakananda-33/+0
2014-02-01Move int and uint overflow tests into macrosBrendan Zabarauskas-0/+7
2014-01-30Remove unused imports.OGINO Masanori-1/+0
2014-01-25Uppercase numeric constantsChris Wong-8/+8
2014-01-18Simplify std::num::Primitive trait definitionBrendan Zabarauskas-17/+1
2014-01-15auto merge of #11548 : bjz/rust/bitwise, r=alexcrichtonbors-3/+2
2014-01-16Merge Bitwise and BitCount traits and remove from prelude, along with BoundedBrendan Zabarauskas-3/+2
2014-01-15Use the least significant beat to determine if int/uint is evenFlavio Percoco-1/+1
2014-01-07Fix remaining cases of leaking importsAlex Crichton-0/+1
2013-12-05Fix documentation typo (divison operator is not backslash)Alexandros Tasos-1/+1
2013-11-29Removed module macro workaround for signed and unsigned integersMarvin Löbel-15/+2
2013-11-29Removed useless cmp::{min, max} reexports from the integer modulesMarvin Löbel-2/+0
2013-11-29Removed a few macro-expanding-to-module workaroundsMarvin Löbel-1/+3
2013-11-26libstd: Remove all non-`proc` uses of `do` from libstdPatrick Walton-4/+4
2013-11-19libstd: Change all uses of `&fn(A)->B` over to `|A|->B` in libstdPatrick Walton-1/+1
2013-10-17std: Move size/align functions to std::mem. #2240Brian Anderson-3/+3
2013-10-05std: add Primitive.is_signedErick Tryzelaar-0/+3
2013-09-20Implement a web backend for rustdoc_ngAlex Crichton-0/+1
2013-09-18Remove and replace cond! Closes #9282.Jimmy Zelinskie-5/+5
2013-09-15Remove {uint,int,u64,i64,...}::from_str,from_str_radixblake2-ppc-43/+28
2013-09-15std::num: Remove `range_step` for each numeric typeblake2-ppc-151/+0
2013-09-12std: Add a bunch of Default implsErick Tryzelaar-0/+6
2013-09-08auto merge of #8988 : cmr/rust/fromstr_fn, r=brsonbors-1/+1
2013-09-08Fix import order which caused the wrong from_str to be in scopeCorey Richardson-1/+1
2013-09-05Rename str::from_bytes to str::from_utf8, closes #8985Florian Hahn-1/+1
2013-08-30remove several 'ne' methodsEric Martin-2/+0
2013-08-27librustc: Ensure that type parameters are in the right positions in paths.Patrick Walton-4/+5
2013-08-22Enabled unit tests in std and extra.Vadim Chugunov-4/+0
2013-08-21auto merge of #8610 : kballard/rust/mod_floor, r=alexcrichtonbors-2/+15
2013-08-20rm obsolete integer to_str{,_radix} free functionsDaniel Micay-38/+27