about summary refs log tree commit diff
path: root/src
AgeCommit message (Expand)AuthorLines
2013-06-12std: methodise str::capacityHuon Wilson-12/+12
2013-06-12std: remove substr & str::count_*, methodise char_len, implement slice_chars.Huon Wilson-103/+75
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-221/+258
2013-06-12std: convert str::{*shift,pop}* to methods.Huon Wilson-67/+93
2013-06-12std: convert str::repeat to a method.Huon Wilson-32/+34
2013-06-12std: replace str::append with a methodHuon Wilson-11/+31
2013-06-12std: convert {vec,str}::to_owned to methods.Huon Wilson-99/+95
2013-06-11auto merge of #7056 : alexcrichton/rust/issue-4727, r=catamorphismbors-23/+17
2013-06-11auto merge of #7055 : thestinger/rust/iterator, r=catamorphismbors-637/+485
2013-06-11auto merge of #7033 : influenza/rust/rust-7022, r=graydonbors-2/+2
2013-06-11auto merge of #7040 : alexcrichton/rust/issue-6511-threadsafe-llvm, r=graydonbors-165/+212
2013-06-11Replace tabs with spacesRon Dahlgren-2/+2
2013-06-11Ignore the test_package_request_version test for nowAlex Crichton-1/+1
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-638/+448
2013-06-11add Iterator implementations for OptionDaniel Micay-0/+38
2013-06-11auto merge of #7035 : influenza/rust/getopts-doc-update, r=bstriebors-14/+15
2013-06-11Assert stk rather than checking nullRon Dahlgren-3/+3
2013-06-11auto merge of #7047 : bblum/rust/bug_triage, r=graydonbors-23/+18
2013-06-11auto merge of #7058 : Blei/rust/fix-7048, r=bstriebors-55/+59
2013-06-11ty: several small fixes to is_instantiablePhilipp Brüschweiler-49/+49
2013-06-11decoder: better error message when failing to look up an idPhilipp Brüschweiler-5/+5
2013-06-11lexer: show correct span on unrecognized token startPhilipp Brüschweiler-1/+5
2013-06-11auto merge of #7050 : huonw/rust/extra-complex-work, r=Aatchbors-34/+83
2013-06-10auto merge of #7054 : yichoi/rust/after_jemalloc, r=brsonbors-0/+7
2013-06-11rt: dummy function pthread_atfork for androidYoung-il Choi-0/+7
2013-06-10auto merge of #7046 : luqmana/rust/issue-7044, r=sanxiynbors-36/+44
2013-06-11extra: implement .norm(), and Polar conversion functions for complex numbers.Huon Wilson-14/+63
2013-06-11std: convert pow, hypot, atan2, log to take arguments by reference.Huon Wilson-20/+20
2013-06-10terminfo: Support more terminfo directory structuresKevin Ballard-2/+13
2013-06-10Tag a bunch of destructors that need mutable self with FIXME for #4330. Close...Ben Blum-2/+5
2013-06-10Add test for #7044.Luqman Aden-0/+14
2013-06-10librustc: Better errors for duplicate definitions.Luqman Aden-22/+16
2013-06-10Remove 'this could be clearer' FIXME. Looks fine. Close #2618.Ben Blum-1/+0
2013-06-10Replace str::raw::buf_as_slice with c_str_to_static_slice. Close #3843.Ben Blum-20/+13
2013-06-10librustc: Don't allow newtype or unit-like structs to shadow other names in t...Luqman Aden-14/+14
2013-06-10Have JIT execution take ownership of the LLVMContextRefAlex Crichton-59/+93
2013-06-10Remove all usage of the global LLVMContextRefAlex Crichton-113/+126
2013-06-11fix tests, remove some warningsHuon Wilson-38/+12
2013-06-11std: replace str::is_{alphanumeric,whitespace} with the methods.Huon Wilson-29/+11
2013-06-11std: replace str::{starts,ends}_with with the method.Huon Wilson-66/+40
2013-06-11std: replace str::substr with the method.Huon Wilson-19/+9
2013-06-11std: remove str::to_charsHuon Wilson-10/+6
2013-06-11std: basic documentation for the new str methodsHuon Wilson-20/+68
2013-06-10std: remove str::{connect,concat}*.Huon Wilson-86/+62
2013-06-10clean-up unused import warningsHuon Wilson-11/+1
2013-06-10std: fix testsHuon Wilson-13/+13
2013-06-10std: convert str::char_at* to methods.Huon Wilson-152/+146