about summary refs log tree commit diff
path: root/src/libstd
AgeCommit message (Expand)AuthorLines
2014-02-11Finalize the Seek APIAlex Crichton-31/+80
2014-02-11Test fixes and rebase conflictsAlex Crichton-44/+31
2014-02-11Rewrite channels yet again for upgradeabilityAlex Crichton-643/+1853
2014-02-11Shuffle around ownership in concurrent queuesAlex Crichton-340/+248
2014-02-11auto merge of #12158 : nikomatsakis/rust/issue-6801-borrowck-closures, r=pcwa...bors-77/+135
2014-02-11str -- borrow fields of self for use in closure since self.iter is borrowedNiko Matsakis-5/+7
2014-02-11io -- introduce local to avoid conflicting borrowNiko Matsakis-1/+2
2014-02-11vec -- introduce local var to make clear what subportion is being borrowedNiko Matsakis-2/+2
2014-02-11std -- replaces uses where const borrows would be requiredNiko Matsakis-70/+125
2014-02-11Fix broken link to the container guideSimon Sapin-1/+1
2014-02-11Move replace and swap to std::mem. Get rid of std::utilEdward Wang-210/+163
2014-02-10auto merge of #12149 : thomaslee/rust/ipaddr_deriving_iter_bytes, r=cmrbors-2/+13
2014-02-10IterBytes for IpAddr and SocketAddrTom Lee-2/+13
2014-02-09auto merge of #12143 : brson/rust/swap, r=alexcrichtonbors-28/+24
2014-02-09auto merge of #12136 : alexcrichton/rust/issue-12123, r=brsonbors-8/+10
2014-02-09std: Clean up the swap function a littleBrian Anderson-8/+5
2014-02-09std: Stop parameterizing some memcpy functions over RawPtrBrian Anderson-23/+22
2014-02-09auto merge of #12124 : brson/rust/intrinsics, r=thestingerbors-55/+84
2014-02-09auto merge of #12120 : gifnksm/rust/buffered-chars, r=alexcrichtonbors-0/+45
2014-02-09Fix the signature of CreateSymbolicLinkWAlex Crichton-8/+10
2014-02-09std: Make mem's doc slightly more accurateBrian Anderson-1/+4
2014-02-09std: Move byteswap functions to memBrian Anderson-30/+34
2014-02-09std: Add move_val_init to mem. Replace direct intrinsic usageBrian Anderson-8/+15
2014-02-09std: Add init and uninit to mem. Replace direct intrinsic usageBrian Anderson-16/+31
2014-02-09std::io: Add `Chars` iterator for Buffer.gifnksm-0/+45
2014-02-08Fix infinite loop in BufReader::read_until.Q.P.Liu-1/+9
2014-02-08Fix infinite loop in MemReader::read_until.Q.P.Liu-1/+9
2014-02-08auto merge of #12090 : bjz/rust/unimplemented, r=cmrbors-58/+81
2014-02-08auto merge of #12109 : omasanori/rust/small-fixes, r=sfacklerbors-1/+1
2014-02-08auto merge of #12098 : kballard/rust/from_utf8_lossy_tweak, r=huonwbors-342/+324
2014-02-08auto merge of #12096 : brson/rust/morestack-addr, r=thestingerbors-3/+0
2014-02-07Rewrite path::Display to reduce unnecessary allocationKevin Ballard-44/+20
2014-02-07Delete send_str, rewrite clients on top of MaybeOwned<'static>Kevin Ballard-318/+240
2014-02-07Implement BytesContainer for MaybeOwnedKevin Ballard-0/+17
2014-02-07Tweak from_utf8_lossy to return a new MaybeOwned enumKevin Ballard-29/+96
2014-02-08Remove an unused variable in a test of std::c_str.OGINO Masanori-1/+0
2014-02-08Fix unused import warnings.OGINO Masanori-0/+1
2014-02-07auto merge of #12066 : huonw/rust/show2, r=alexcrichtonbors-90/+90
2014-02-07auto merge of #12059 : thestinger/rust/glue, r=pcwaltonbors-26/+158
2014-02-08std::fmt: convert the formatting traits to a proper self.Huon Wilson-90/+90
2014-02-07rm out-of-date comment from std::unstable::rawDaniel Micay-3/+0
2014-02-07remove type descriptors from proc and @TDaniel Micay-23/+158
2014-02-07auto merge of #12029 : zkamsler/rust/merge-sort-allocations, r=huonwbors-5/+104
2014-02-07Reduced allocations in merge_sort for short vectorsZach Kamsler-5/+104
2014-02-07rustc: Remove 'morestack_addr' intrinsic. UnusedBrian Anderson-3/+0
2014-02-08Clean up formatting in macros moduleBrendan Zabarauskas-58/+74
2014-02-07Cleaned up imports per coding standards.chromatic-15/+15
2014-02-07Removed prelude::* from libstd files.chromatic-14/+48
2014-02-08Add unimplemented! macroBrendan Zabarauskas-0/+7
2014-02-07auto merge of #12062 : kballard/rust/from_utf8_lossy, r=huonwbors-31/+181