about summary refs log tree commit diff
path: root/src/libcore
AgeCommit message (Expand)AuthorLines
2013-02-15auto merge of #4958 : cpeterso/rust/reseed-rng, r=graydonbors-10/+10
2013-02-15Fix windows build error. `buf` is borrowed by the call toNiko Matsakis-4/+7
2013-02-15Removed `has_*` predicates from NumStrConv traitMarvin Löbel-50/+34
2013-02-15libcore: Get rid of `move`.Luqman Aden-362/+358
2013-02-15add reserve_at_least method to LinearMap/LinearSetDaniel Micay-4/+25
2013-02-14auto merge of #4944 : catamorphism/rust/xxx-to-fixme, r=catamorphismbors-2/+2
2013-02-14encapsulate isaac RNG in rust_rng structChris Peterson-10/+10
2013-02-15rm FIXME from LinearMap's to_bucketDaniel Micay-4/+2
2013-02-15tidyMarvin Löbel-5/+0
2013-02-15Removed generic infinity, NaN and negative zero functionsMarvin Löbel-87/+7
2013-02-15Long lines, proper FIXME, inliningMarvin Löbel-66/+71
2013-02-15Made num <-> str conversion functions use NumStrConv traitMarvin Löbel-119/+111
2013-02-15Added NumStrConv trait and impls for the string conversion functionsMarvin Löbel-1/+108
2013-02-14auto merge of #4937 : luqmana/rust/remove-mut-addr-of, r=catamorphismbors-22/+13
2013-02-14libcore: replace mut_addr_of properly on macLuqman Aden-1/+2
2013-02-14libcore: Remove ptr::mut_addr_of since &mut is coerced to *mutLuqman Aden-22/+12
2013-02-15Moved numeric string conversion functions into own moduleMarvin Löbel-604/+642
2013-02-14auto merge of #4938 : thestinger/rust/no_zero, r=brsonbors-5/+1
2013-02-14core: Clean up XXXesTim Chevalier-2/+2
2013-02-14Convert all uses of vec::slice to vec::view Issue #3869Nick Desaulniers-68/+62
2013-02-14auto merge of #4934 : nickdesaulniers/rust/issue4524cleanup, r=brsonbors-5/+5
2013-02-14librustc: Replace `impl Type : Trait` with `impl Trait for Type`. rs=implflip...Patrick Walton-252/+252
2013-02-14Remove all final references to die!Nick Desaulniers-5/+5
2013-02-14stop zeroing all exchange allocationsDaniel Micay-5/+1
2013-02-14libcore: Move the numeric operations out of Num. r=brsonPatrick Walton-104/+153
2013-02-13Remove die!, raplace invocations with fail! Issue #4524 pt 3Nick Desaulniers-188/+191
2013-02-13auto merge of #4908 : bstrie/rust/rimov3, r=pcwaltonbors-57/+27
2013-02-13rustc and std: teach about #[bench], modernize to use quote_expr! some.Graydon Hoare-2/+2
2013-02-13core: add abs to num.Graydon Hoare-0/+4
2013-02-13core: add min and max to cmp, re-export various places.Graydon Hoare-10/+13
2013-02-13RIMOV core::vecBen Striegel-48/+18
2013-02-13RIMOV core::hashBen Striegel-2/+2
2013-02-13RIMOV core::ioBen Striegel-4/+4
2013-02-13RIMOV core::randBen Striegel-1/+1
2013-02-13RIMOV core::runBen Striegel-2/+2
2013-02-12auto merge of #4900 : luqmana/rust/core_os_errors, r=graydonbors-10/+134
2013-02-12auto merge of #4914 : nikomatsakis/rust/issue-4856, r=nikomatsakisbors-24/+37
2013-02-12Adjust borrow checker algorithm to address #4856 unsoundness,Niko Matsakis-24/+37
2013-02-12auto merge of #4881 : bjz/rust/incoming, r=catamorphismbors-73/+1026
2013-02-12auto merge of #4880 : erickt/rust/hashmap-cleanup, r=catamorphismbors-33/+98
2013-02-12auto merge of #4858 : z0w0/rust/rm_weak_task_count, r=graydonbors-6/+6
2013-02-12auto merge of #4874 : thestinger/rust/option, r=catamorphismbors-2/+2
2013-02-11Long lines.Luqman Aden-2/+3
2013-02-11rt: remove last_os_error and adjust tests.Luqman Aden-1/+0
2013-02-11core: Rewrite last_os_error in Rust for windows as well.Luqman Aden-3/+33
2013-02-11core: Rewrite last_os_error in Rust for unix and provide access to errno (uni...Luqman Aden-9/+103
2013-02-12core: Fix dec/inc_kernel_live_count mixupZack Corr-4/+4
2013-02-11core: Fix files that needed GenericChan/Port from preludeZack Corr-3/+4
2013-02-11Add NumCast trait for generic numeric type castsBrendan Zabarauskas-73/+1026
2013-02-10core: add LinearMap::find_or_insert{,_with}Erick Tryzelaar-13/+81