summary refs log tree commit diff
path: root/src/libstd
AgeCommit message (Collapse)AuthorLines
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
Closes #4727
2013-06-11Iterator documentation fixesRon Dahlgren-3/+3
Fixes two typos and one incorrect description.
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
r? anybody
2013-06-11std: convert pow, hypot, atan2, log to take arguments by reference.Huon Wilson-20/+20
2013-06-10std::rt: Work around a dynamic borrowck bugBrian Anderson-3/+2
2013-06-10debugged a compiler ICE when merging local::borrow changes into the main io ↵toddaaro-22/+60
branch and modified the incoming new file lang.rs to be api-compatible
2013-06-10Tag a bunch of destructors that need mutable self with FIXME for #4330. ↵Ben Blum-2/+5
Close #4943.
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
2013-06-11std: remove str::to_charsHuon Wilson-5/+0
2013-06-11std: basic documentation for the new str methodsHuon Wilson-20/+68
2013-06-10std: remove str::{connect,concat}*.Huon Wilson-20/+3
2013-06-10clean-up unused import warningsHuon Wilson-1/+0
2013-06-10std: fix testsHuon Wilson-13/+13
2013-06-10std: convert str::char_at* to methods.Huon Wilson-131/+126
2013-06-10std: convert str::trim* to methods.Huon Wilson-110/+90
2013-06-10std: convert str::reserve* to methods, and methodise str::push_*.Huon Wilson-168/+170
2013-06-10std: remove str::contains in favour of the methodHuon Wilson-39/+27
2013-06-10std: replace str::find_str* with a methodHuon Wilson-115/+44
2013-06-10std: replace str::{any,all}_between with the iterator equivalent.Huon Wilson-60/+0
2013-06-10std: convert character-based str::find_* to methods. Add .slice_{to,from} ↵Huon Wilson-371/+142
methods.
2013-06-10std: convert each_split_str to an iteratorHuon Wilson-114/+112
2013-06-10std: fix compile & testHuon Wilson-0/+1
2013-06-10std: remove str::{len, slice, is_empty} in favour of methods.Huon Wilson-115/+98
2013-06-10std: replace str::all/any fns and methods with iteratorsHuon Wilson-55/+7
2013-06-10std: replace str::each_split* with an iteratorHuon Wilson-437/+215
2013-06-09auto merge of #7028 : thestinger/rust/cmp, r=brsonbors-30/+0
2013-06-09cmp: remove duplicate free functionsDaniel Micay-30/+0
2013-06-09auto merge of #6904 : catamorphism/rust/rustpkg_version_vcs, r=catamorphismbors-1/+1
r? @brson
2013-06-08remove deprecated vec::{is_empty, len} functionsDaniel Micay-43/+39
2013-06-08rm some uses of to_mut_unsafe_ptrDaniel Micay-3/+3
2013-06-08std: Fix search-and-replace typosTim Chevalier-1/+1
2013-06-09remove unused import warningsHuon Wilson-10/+2
2013-06-09std: replace the str::each* fns/methods with byte iteratorsHuon Wilson-155/+71
2013-06-09std: remove each_char* fns and methods from str, replaced by iterators.Huon Wilson-138/+61
2013-06-09std: remove foldr and alli methods in vecHuon Wilson-16/+0
2013-06-09std: remove fold[lr] in favour of iteratorsHuon Wilson-124/+1
2013-06-09std: remove {all*,any*,count} in favour of iteratorsHuon Wilson-195/+26
2013-06-09std: add reverse vec iterators, replace vec::each*_reverse.Huon Wilson-116/+99
2013-06-08auto merge of #7008 : thestinger/rust/iterator, r=catamorphismbors-0/+1
The `IteratorUtil` trait hits a bug in method resolve, but the basic trait has no issue.