about summary refs log tree commit diff
path: root/src/libstd
AgeCommit message (Expand)AuthorLines
2013-06-14auto merge of #7110 : thestinger/rust/iterator, r=brsonbors-140/+6
2013-06-14rm CopyableNonstrictIterDaniel Micay-53/+1
2013-06-14rm MutableIterDaniel Micay-28/+1
2013-06-14rm ExtendedMutableIterDaniel Micay-12/+0
2013-06-14add IteratorUtil to the preludeDaniel Micay-47/+4
2013-06-14auto merge of #7116 : thestinger/rust/whitespace, r=luqmanabors-5/+0
2013-06-14std: get std::path tests to work againErick Tryzelaar-0/+1
2013-06-13Revert "std: convert {vec,str}::to_owned to methods."Brian Anderson-30/+32
2013-06-13automated whitespace fixesDaniel Micay-5/+0
2013-06-13auto merge of #7105 : sstewartgallus/rust/removed_unused_imports, r=sanxiynbors-4/+2
2013-06-13Remove unused importsSteven Stewart-Gallus-4/+2
2013-06-13auto merge of #7100 : thestinger/rust/hashmap, r=pnkfelixbors-7/+1
2013-06-13hashmap: remove leftover debug!() loggingDaniel Micay-7/+1
2013-06-12auto merge of #7096 : huonw/rust/invalid-null-str, r=thestingerbors-16/+0
2013-06-13std: remove the invalid NullTerminatedStr instance for &'static str.Huon Wilson-16/+0
2013-06-12auto merge of #7027 : sstewartgallus/rust/dynamic_lib, r=graydonbors-0/+207
2013-06-12Prototyped a dynamic library facility interfaceSteven Stewart-Gallus-0/+207
2013-06-13std: make all strings Equiv-alent to each other, generalise Path.push_many to...Huon Wilson-9/+21
2013-06-12auto merge of #7073 : influenza/rust/iterator-doc-fixes, r=catamorphismbors-3/+3
2013-06-11auto merge of #7072 : thestinger/rust/ptr, r=catamorphismbors-13/+29
2013-06-12std: fix windowsHuon Wilson-1/+1
2013-06-12std: fix method renaming.Huon Wilson-1/+1
2013-06-12std: generalise .trim_chars to use CharEq.Huon Wilson-42/+74
2013-06-12std: create Str trait for DRY. Use it on StrVector.Huon Wilson-85/+32
2013-06-12std: convert str::escape_* to methods.Huon Wilson-44/+34
2013-06-12std: convert str::replace to a method.Huon Wilson-33/+33
2013-06-12std: methodise str::capacityHuon Wilson-12/+12
2013-06-12std: remove substr & str::count_*, methodise char_len, implement slice_chars.Huon Wilson-77/+48
2013-06-12std: add a test for HashMap::find_equiv.Huon Wilson-0/+17
2013-06-12std: unify the str -> [u8] functions as 3 methods: .as_bytes() and .as_bytes_...Huon Wilson-137/+188
2013-06-12std: convert str::{*shift,pop}* to methods.Huon Wilson-61/+87
2013-06-12std: convert str::repeat to a method.Huon Wilson-28/+30
2013-06-12std: replace str::append with a methodHuon Wilson-10/+30
2013-06-12std: convert {vec,str}::to_owned to methods.Huon Wilson-34/+32
2013-06-11auto merge of #7056 : alexcrichton/rust/issue-4727, r=catamorphismbors-22/+16
2013-06-11Iterator documentation fixesRon Dahlgren-3/+3
2013-06-11fix the docstring for copy_nonoverlapping_memoryDaniel Micay-9/+25
2013-06-11fix the ptr::set_memory docstringDaniel Micay-4/+4
2013-06-11Add a finally impl for `extern "Rust" fn()`Alex Crichton-22/+16
2013-06-11fix windows buildDaniel Micay-2/+2
2013-06-11option: remove redundant old_iter implsDaniel Micay-83/+45
2013-06-11add Iterator implementations for OptionDaniel Micay-0/+38
2013-06-11auto merge of #7047 : bblum/rust/bug_triage, r=graydonbors-22/+18
2013-06-11std: convert pow, hypot, atan2, log to take arguments by reference.Huon Wilson-20/+20
2013-06-10Tag a bunch of destructors that need mutable self with FIXME for #4330. Close...Ben Blum-2/+5
2013-06-10Replace str::raw::buf_as_slice with c_str_to_static_slice. Close #3843.Ben Blum-20/+13
2013-06-11fix tests, remove some warningsHuon Wilson-12/+1
2013-06-11std: replace str::is_{alphanumeric,whitespace} with the methods.Huon Wilson-25/+7
2013-06-11std: replace str::{starts,ends}_with with the method.Huon Wilson-52/+26
2013-06-11std: replace str::substr with the method.Huon Wilson-13/+3