about summary refs log tree commit diff
path: root/src/libstd/repr.rs
AgeCommit message (Expand)AuthorLines
2014-02-20Mass rename if_ok! to try!Alex Crichton-50/+50
2014-02-15std: clean up ptr a bitCorey Richardson-5/+4
2014-02-13remove duplicate function from std::ptr (is_null, is_not_null, offset, mut_of...JeremyLetang-1/+2
2014-02-13Register new snapshotsAlex Crichton-4/+0
2014-02-12Removed ty_type (previously used to represent *tydesc).Eduard Burtescu-0/+3
2014-02-11Move replace and swap to std::mem. Get rid of std::utilEdward Wang-1/+1
2014-02-04Register new snapshotsAlex Crichton-4/+0
2014-02-03std: Remove io::io_errorAlex Crichton-88/+118
2014-02-02std,extra: remove use of & support for @[].Huon Wilson-6/+0
2014-02-02libextra: Remove `@str` from all the librariesPatrick Walton-5/+1
2014-01-27Demote self to an (almost) regular argument and remove the env param.Eduard Burtescu-8/+2
2014-01-22Replace C types with Rust types in libstd, closes #7313Florian Hahn-14/+13
2014-01-21[std::str] Rename from_utf8_owned_opt() to from_utf8_owned(), drop the old fr...Simon Sapin-2/+2
2014-01-21[std::vec] Rename .pop_opt() to .pop(), drop the old .pop() behaviorSimon Sapin-3/+3
2014-01-17auto merge of #11598 : alexcrichton/rust/io-export, r=brsonbors-2/+2
2014-01-17Tweak the interface of std::ioAlex Crichton-2/+2
2014-01-15register snapshotsDaniel Micay-17/+0
2014-01-14remove reference counting headers from ~Daniel Micay-0/+2
2014-01-11Remove re-exports of std::io::stdio::{print, println} in the prelude.Brendan Zabarauskas-0/+1
2014-01-08Remove the io::Decorator traitAlex Crichton-4/+2
2014-01-03libstd: Remove all support code related to `@mut`Patrick Walton-3/+0
2013-12-11Make 'self lifetime illegal.Erik Price-5/+5
2013-11-28Register new snapshotsAlex Crichton-1/+1
2013-11-26libstd: Remove all non-`proc` uses of `do` from libstdPatrick Walton-41/+39
2013-11-26Removed unneccessary `_iter` suffixes from various APIsMarvin Löbel-1/+1
2013-11-19libstd: Change all uses of `&fn(A)->B` over to `|A|->B` in libstdPatrick Walton-2/+2
2013-11-11Move std::rt::io to std::ioAlex Crichton-4/+4
2013-11-06Register new snapshotsAlex Crichton-12/+0
2013-11-04libsyntax/librustc: Allow calling variadic foreign functions.Luqman Aden-0/+15
2013-10-29Adjust reflection for the possibility of discriminants larger than int.Jed Davis-6/+6
2013-10-23Removed Unnecessary comments and white spaces #4386reedlepee-1/+0
2013-10-23Making fields in std and extra : private #4386reedlepee-4/+5
2013-10-22Drop the '2' suffix from logging macrosAlex Crichton-4/+4
2013-10-21std: Move sys::log_str to repr::repr_to_str. Further work on #2240.Brian Anderson-0/+10
2013-10-17Register new snapshotsAlex Crichton-10/+0
2013-10-15use element count in slices, not size in bytesDaniel Micay-16/+19
2013-10-04Register new snapshotsAlex Crichton-2/+0
2013-10-01remove the `float` typeDaniel Micay-13/+7
2013-09-30std: Remove usage of fmt!Alex Crichton-4/+4
2013-09-09auto merge of #9065 : thestinger/rust/iter, r=alexcrichtonbors-1/+1
2013-09-09rename `std::iterator` to `std::iter`Daniel Micay-1/+1
2013-09-08repr: update for removal of constDaniel Micay-2/+1
2013-09-08repr: write the mutability qualifier for slicesDaniel Micay-0/+4
2013-09-07fix repr of strings/chars with quotesDaniel Micay-5/+22
2013-09-05Rename str::from_bytes to str::from_utf8, closes #8985Florian Hahn-1/+1
2013-09-03repr: add very basic support for functionsDaniel Micay-5/+17
2013-09-02auto merge of #8927 : thestinger/rust/repr, r=huonwbors-11/+37
2013-09-02repr: handle tuple structs sanelyDaniel Micay-9/+21
2013-09-02repr: add support for trait objectsDaniel Micay-1/+6
2013-09-02repr: print functions as `fn()`Daniel Micay-1/+10