| Age | Commit message (Collapse) | Author | Lines | |
|---|---|---|---|---|
| 2012-12-13 | Replace some Eq impls with deriving_eq | Brian Anderson | -10/+1 | |
| 2012-12-05 | test: Fix a bunch of test cases. rs=burning | Patrick Walton | -2/+2 | |
| 2012-12-03 | Update license, add license boilerplate to most files. Remainder will follow. | Graydon Hoare | -0/+10 | |
| 2012-11-30 | librustc: Make `a.b()` always a method call. r=nmatsakis | Patrick Walton | -1/+1 | |
| 2012-11-28 | Register snapshots | Brian Anderson | -13/+0 | |
| 2012-11-25 | Ignore a should_fail test on windows | Brian Anderson | -0/+1 | |
| 2012-11-24 | [libs] Remove unread_byte method from core::io::Reader | Tim Chevalier | -7/+0 | |
| Method isn't used. See discussion on #2738 and #4031 Closes #2738 | ||||
| 2012-11-24 | Fix a bug where read(buf, len) would fail if buf was big enough and succeed ↵ | Gareth Daniel Smith | -1/+24 | |
| if it was too small ... which is the opposite of correct. | ||||
| 2012-11-19 | rustc: Implement explicit self for Eq and Ord. r=graydon | Patrick Walton | -0/+13 | |
| 2012-11-18 | Made more stuff pure. | Jesse Jones | -1/+1 | |
| escape functions in char, io.with_str_reader, base64 and md5sum, cell.empty_cell and is_empty. | ||||
| 2012-11-04 | Add more doc-comments for Reader, ReaderUtil, Writer and WriterUtil (loosely ↵ | Gareth Daniel Smith | -26/+115 | |
| associated with issue #2004). | ||||
| 2012-11-04 | Add size-specific int reading methods to ReaderUtil to match the existing ↵ | Gareth Daniel Smith | -33/+250 | |
| int writing methods in WriterUtil (for issue #2004). | ||||
| 2012-11-03 | Fix a bug where .write([]) would always fail. | Gareth Daniel Smith | -3/+9 | |
| 2012-10-23 | Remove uses of binary move - <- - from tests and libraries | Tim Chevalier | -1/+1 | |
| 2012-10-18 | libcore: minor code cleanup. | Erick Tryzelaar | -2/+2 | |
| This is minor and probably completely inconsequential to performance, but I find vec::map to be more clear than vec::each and a push. | ||||
| 2012-10-18 | libcore: call [u8] values bytes, not bufs | Erick Tryzelaar | -46/+50 | |
| 2012-10-18 | Rewrite io::ByteBuf into a struct | Erick Tryzelaar | -13/+15 | |
| 2012-10-18 | Make with_bytes_reader/with_bytes_writer pure | Erick Tryzelaar | -7/+11 | |
| 2012-10-12 | Make moves explicit in core tests | Tim Chevalier | -2/+2 | |
| 2012-10-04 | Forbid deprecated modes again in core | Tim Chevalier | -0/+3 | |
| Sadly, there's only one file that requires deprecated modes (stackwalk)... So, forbid them everywhere else. | ||||
| 2012-10-02 | Removing explicit uses of + mode | Tim Chevalier | -9/+9 | |
| This removes most explicit uses of the + argument mode. Pending a snapshot, I had to remove the forbid(deprecated_modes) pragma from a bunch of files. I'll put it back! + mode still has to be used in a few places for functions that get moved (see task.rs) The changes outside core and std are due to the to_bytes trait and making the compiler (with legacy modes on) agree with the libraries (with legacy modes off) about modes. | ||||
| 2012-10-01 | De-export gc and io. Part of #3583. | Graydon Hoare | -48/+48 | |
| 2012-09-28 | Add a demoded version of ptr::addr_of | Tim Chevalier | -7/+7 | |
| Currently, the new version is ptr::p2::addr_of and the old one is ptr::addr_of. This is kind of cheesy, but I need a snapshot before I can ditch the old version, since the pipe compiler generates calls to addr_of. core is converted over to use the new version, std is not. | ||||
| 2012-09-28 | core: Demode patterns | Brian Anderson | -3/+3 | |
| 2012-09-28 | demode vec | Niko Matsakis | -3/+3 | |
| 2012-09-26 | change vec::view sig to be sound (good catch @bblum) | Niko Matsakis | -2/+4 | |
| 2012-09-26 | Demode vec::push (and convert to method) | Niko Matsakis | -9/+9 | |
| 2012-09-26 | Refactoring ReaderUtil trait, combining it with the traitless impl on Reader. | Eric Holk | -4/+13 | |
| 2012-09-26 | Demode some of core::io | Tim Chevalier | -42/+44 | |
| 2012-09-25 | Demode core::result | Brian Anderson | -3/+3 | |
| 2012-09-23 | Register snapshots. Remove redundant Eq impls, Makefile hacks | Brian Anderson | -12/+0 | |
| 2012-09-23 | Make it illegal to use modes in a fn signature with providing | Niko Matsakis | -3/+3 | |
| an explicit variable name. (Step one to changing the defaults) First step to #3535 | ||||
| 2012-09-21 | De-mode vec::map, vec::eachi, vec::rev_each, vec::rev_eachi | Niko Matsakis | -5/+4 | |
| 2012-09-21 | Install new pub/priv/export rules as defaults, old rules accessible under ↵ | Graydon Hoare | -0/+3 | |
| #[legacy_exports]; | ||||
| 2012-09-20 | libcore: Make BytesWriters not require shared boxes. | Patrick Walton | -4/+12 | |
| 2012-09-20 | rustc: De-mode all overloaded operators | Patrick Walton | -0/+12 | |
| 2012-09-19 | core: Clean up crate docs and give all mods a brief description | Brian Anderson | -2/+2 | |
| 2012-09-19 | De-mode vec::each() and many of the str iteration routines | Niko Matsakis | -1/+1 | |
| Note that the method foo.each() is not de-moded, nor the other vec routines. | ||||
| 2012-09-18 | Revert "replace explicit calls to vec::each with vec::each_ref, partially ↵ | Niko Matsakis | -2/+2 | |
| demode str" This reverts commit 1be24f0758d3075d2e7f141f8831bb8a233ce86e. Not quite ready. | ||||
| 2012-09-18 | replace explicit calls to vec::each with vec::each_ref, partially demode str | Niko Matsakis | -2/+2 | |
| 2012-09-18 | core: Rename 'unsafe' mod to 'cast' | Brian Anderson | -1/+1 | |
| 2012-09-18 | libcore: make a copyless io::BytesWriter | Erick Tryzelaar | -30/+30 | |
| 2012-09-15 | vec::u8 => vec::bytes (#3444) | Erick Tryzelaar | -4/+4 | |
| 2012-09-15 | io::Reader::chars_from_buf => chars_from_bytes (#3444) | Erick Tryzelaar | -2/+2 | |
| 2012-09-12 | Rename vec::unsafe to vec::raw | Brian Anderson | -3/+3 | |
| 2012-09-12 | fixup mutability of vec::each, make iter_bytes pure | Niko Matsakis | -1/+1 | |
| also, change DVec() to work with imm vectors rather than mut ones | ||||
| 2012-09-10 | Make all remaining moves explicit in libcore | Tim Chevalier | -4/+4 | |
| 2012-09-07 | Convert 'again' to 'loop'. Remove 'again' keyword | Brian Anderson | -1/+1 | |
| 2012-09-07 | Remove 'let' syntax for struct fields | Brian Anderson | -3/+3 | |
| 2012-09-07 | rustc: Add an "ne" method to the Eq trait, and implement it everywhere | Patrick Walton | -0/+1 | |
