about summary refs log tree commit diff
path: root/src/libstd
AgeCommit message (Expand)AuthorLines
2014-01-25auto merge of #11775 : alexcrichton/rust/select-fix, r=pcwaltonbors-1/+4
2014-01-25Uppercase numeric constantsChris Wong-331/+331
2014-01-25Fixed iter's is_empty to use is_none() and added relevant test flagSalem Talha-1/+2
2014-01-25Fix some docs about rtDerek Chiang-3/+1
2014-01-24Fix zero-sized memory mappingCorey Richardson-2/+13
2014-01-24Use `mmap` to map in task stacks and guard pageCorey Richardson-24/+41
2014-01-24Add support for arbitrary flags to MemoryMap.Corey Richardson-7/+15
2014-01-24auto merge of #11774 : sfackler/rust/move-macros, r=pcwaltonbors-1/+192
2014-01-24Use an absolute path in test_process_output_fail_to_startAndrew Chin-1/+1
2014-01-24auto merge of #11732 : luqmana/rust/native-getaddrinfo, r=alexcrichtonbors-9/+55
2014-01-24libstd: Use iotest! for for get_host_addresses.Luqman Aden-5/+11
2014-01-24Fix a spuriously tripped assert in select()Alex Crichton-1/+4
2014-01-24Delete ignore! macroSteven Fackler-3/+0
2014-01-24Move macro_rules! macros to libstdSteven Fackler-1/+195
2014-01-24auto merge of #11750 : bnoordhuis/rust/follow-rustc-symlink, r=thestingerbors-3/+21
2014-01-23Update flip() to be rev().Sean Chalmers-55/+55
2014-01-23Rename Invert to Flip - Issue 10632Sean Chalmers-57/+57
2014-01-22auto merge of #11682 : thestinger/rust/vector, r=brsonbors-57/+289
2014-01-22auto merge of #11611 : SiegeLord/rust/exp_printing, r=alexcrichtonbors-89/+167
2014-01-22hashmap: port to Vec<T>Daniel Micay-25/+25
2014-01-22add new vector representation as a libraryDaniel Micay-1/+233
2014-01-22vec: make unsafe indexing functions higher-levelDaniel Micay-6/+6
2014-01-22libc: switch `free` to the proper signatureDaniel Micay-26/+26
2014-01-22Implement native timersAlex Crichton-29/+154
2014-01-22Remove the initial and trailing blank doc-comment linesSiegeLord-80/+0
2014-01-22Add LowerExp 'e' and UpperExp 'E' format traits/specifiersSiegeLord-0/+98
2014-01-22float_to_str_bytes_common can now handle exponential notationSiegeLord-17/+77
2014-01-22libnative: Implement get_host_addresses.Luqman Aden-4/+44
2014-01-22Implement std::rt::at_exitAlex Crichton-0/+87
2014-01-22Add std::os::self_exe_name()Ben Noordhuis-3/+21
2014-01-22Replace C types with Rust types in libstd, closes #7313Florian Hahn-173/+158
2014-01-22auto merge of #11711 : alexcrichton/rust/issue-11683, r=brsonbors-4/+58
2014-01-21[std::str] Remove the now unused not_utf8 condition.Simon Sapin-11/+3
2014-01-21[std::str] Rename from_utf8_owned_opt() to from_utf8_owned(), drop the old fr...Simon Sapin-46/+20
2014-01-21[std::str] Rename from_utf8_opt() to from_utf8(), drop the old from_utf8() be...Simon Sapin-50/+25
2014-01-21[std::path] Rename .container_as_str_opt() to .container_as_str(), drop the o...Simon Sapin-40/+11
2014-01-21[std::vec] Rename .remove_opt() to .remove(), drop the old .remove() behaviorSimon Sapin-48/+14
2014-01-21[std::vec] Rename .shift_opt() to .shift(), drop the old .shift() behaviorSimon Sapin-26/+11
2014-01-21[std::vec] Rename .pop_opt() to .pop(), drop the old .pop() behaviorSimon Sapin-33/+17
2014-01-21[std::vec] Rename .last_opt() to .last(), drop the old .last() behaviorSimon Sapin-28/+5
2014-01-21[std::vec] Rename .head_opt() to .head(), drop the old .head() behaviorSimon Sapin-29/+6
2014-01-21[std::vec] Rename .get_opt() to .get()Simon Sapin-6/+6
2014-01-21auto merge of #11665 : alexcrichton/rust/zed-cleanup, r=brsonbors-271/+0
2014-01-21Purge borrowck from libstdAlex Crichton-271/+0
2014-01-21Flag all TLS functions as inline(never)Alex Crichton-4/+58
2014-01-21Remove unnecessary parentheses.Huon Wilson-17/+17
2014-01-20Register new snapshotsAlex Crichton-2/+1
2014-01-20auto merge of #11673 : omasanori/rust/sep-doc, r=alexcrichtonbors-2/+2
2014-01-20Improve std::num::pow implementationBrendan Zabarauskas-42/+30
2014-01-20Add operator trait constraints to std::num::{Zero, One} and document their ap...Brendan Zabarauskas-56/+52