summary refs log tree commit diff
path: root/src/libstd
AgeCommit message (Expand)AuthorLines
2013-12-21std: Remove some @-boxesBrian Anderson-76/+89
2013-12-20Implement size_hint() for ByRef iteratorPalmer Cox-1/+2
2013-12-20Update next() and size_hint() for MutSpliterIteratorPalmer Cox-11/+8
2013-12-20Remove remainder field from MutChunkIterPalmer Cox-13/+10
2013-12-21std::vec: add a sugary .sort() method for plain Ord sorting.Huon Wilson-7/+64
2013-12-20auto merge of #10986 : adridu59/rust/patch-new, r=alexcrichtonbors-3/+3
2013-12-20doc: forward-port the conditions tutorial + fixup libstd exampleAdrien Tétar-3/+3
2013-12-20auto merge of #11081 : alexcrichton/rust/comm-adapters, r=huonwbors-2/+5
2013-12-19auto merge of #11071 : huonw/rust/quiet-test, r=cmrbors-46/+28
2013-12-20std::vec: implement a stable merge sort, deferring to insertion sort forHuon Wilson-1/+260
2013-12-19Get comm_adapters building againAlex Crichton-2/+5
2013-12-19auto merge of #11041 : cmr/rust/pkgid_changes, r=cmr,metajackbors-0/+2
2013-12-19Rename pkgid to crate_idCorey Richardson-0/+2
2013-12-20std: silence warnings when compiling test.Huon Wilson-46/+28
2013-12-19auto merge of #11061 : huonw/rust/opt-unsafe-vec, r=alexcrichtonbors-48/+105
2013-12-19std::vec: use some unsafe code to optimise `remove`.Huon Wilson-39/+74
2013-12-19auto merge of #11065 : huonw/rust/slice-chars-example, r=cmrbors-1/+1
2013-12-19auto merge of #11038 : alexcrichton/rust/fix-osx-leak, r=cmrbors-2/+1
2013-12-18Upgrade libuv to fix a leak on OSXAlex Crichton-2/+1
2013-12-18auto merge of #11050 : alexcrichton/rust/snapshots, r=brsonbors-41/+1
2013-12-19std::str: fix .slice_chars example. Fixes #11014.Huon Wilson-1/+1
2013-12-19std::vec: replace .insert with a small amount of unsafe code.Huon Wilson-9/+31
2013-12-18auto merge of #11029 : huonw/rust/rm-vec-as-buf, r=cmrbors-319/+196
2013-12-19std::str: remove .as_mut_buf & rewrite/simplify `.push_char`.Huon Wilson-23/+6
2013-12-19std::str: replace .as_imm_buf with .as_ptr.Huon Wilson-101/+68
2013-12-19std::vec: remove .as_muf_buf, replaced by .as_mut_ptr & .len.Huon Wilson-112/+71
2013-12-19std::vec: remove .as_imm_buf, replaced by .as_ptr & .len.Huon Wilson-91/+59
2013-12-18Register new snapshotsAlex Crichton-41/+1
2013-12-17auto merge of #11019 : alexcrichton/rust/issue-10545, r=pcwaltonbors-1/+2
2013-12-17auto merge of #10967 : chris-morgan/rust/clean-and-tidy-some-traits, r=alexcr...bors-448/+7
2013-12-17auto merge of #10863 : cadencemarseille/rust/patch-handle-ENOENT, r=alexcrichtonbors-3/+8
2013-12-17Don't allow impls to force public typesAlex Crichton-1/+2
2013-12-17auto merge of #10998 : thestinger/rust/iter, r=alexcrichtonbors-4/+2
2013-12-17Handle ENOENTCadence Marseille-3/+8
2013-12-17auto merge of #10996 : huonw/rust/more-vec-raw, r=cmrbors-86/+64
2013-12-17auto merge of #10830 : alexcrichton/rust/spsc-queue, r=brsonbors-2467/+3030
2013-12-16Test fallout from std::comm rewriteAlex Crichton-14/+26
2013-12-16libstd: Implement the new `Cell`.Patrick Walton-0/+100
2013-12-16librustc: Implement a `Pod` kind for types that can be `memcpy`'d.Patrick Walton-0/+13
2013-12-16Fallout of rewriting std::commAlex Crichton-2033/+387
2013-12-16Rewrite std::commAlex Crichton-434/+2631
2013-12-17std::vec: make init_elem nicer by doing fewer moves.Huon Wilson-5/+1
2013-12-17std::vec: convert .copy_memory to use copy_nonoverlapping_memory.Huon Wilson-5/+5
2013-12-17std::vec::bytes: remove the reference to overlapping src and dest inHuon Wilson-7/+4
2013-12-17std::vec::raw: convert copy_memory to a method.Huon Wilson-20/+21
2013-12-17std::vec::raw: convert init_elem to a method.Huon Wilson-16/+16
2013-12-16Make BufferedReader propagate 0-byte long reads.Sébastien Paolacci-3/+3
2013-12-16Spell out the units used for the `offset` argument, so that people doFelix S. Klock II-1/+5
2013-12-16vec: avoid some unsafe code in MoveIterator's dtorDaniel Micay-4/+2
2013-12-17std::vec: remove aliasing &mut [] and &[] from shift_opt.Huon Wilson-43/+27