summary refs log tree commit diff
path: root/src/libcore/io.rs
AgeCommit message (Expand)AuthorLines
2013-03-29librustc: Remove `fail_unless!`Patrick Walton-36/+36
2013-03-28Removing unused importsAlex Crichton-1/+1
2013-03-26librustc: Modify all code to use new lifetime binder syntaxPatrick Walton-2/+2
2013-03-26libcore: Change `[const T]` to `const [T]` everywherePatrick Walton-8/+10
2013-03-22libcore: Remove `pure` from libcore. rs=depurePatrick Walton-5/+5
2013-03-22auto merge of #5398 : dbaupp/rust/core-readlines, r=graydonbors-6/+49
2013-03-23libcore: handle trailing newlines more like other languages.Huon Wilson-6/+49
2013-03-22core: replace uses of old deriving attribute with new oneAndrew Paseltiner-1/+1
2013-03-22auto merge of #5484 : pcwalton/rust/snapshots, r=pcwaltonbors-6/+0
2013-03-21librustc: Register new snapshotsPatrick Walton-6/+0
2013-03-21librustc: Forbid destructors from being attached to any structs that might co...Patrick Walton-6/+8
2013-03-21libcore: Remove a few possibly-cyclic imports in an effort to unbreak the tre...Patrick Walton-1/+3
2013-03-20auto merge of #5456 : graydon/rust/fixups, r=pcwaltonbors-1/+5
2013-03-20libsyntax: Never use `::<>` in the type grammarPatrick Walton-1/+1
2013-03-20add stage3 markers where necessary for dist-snapGraydon Hoare-0/+2
2013-03-20core: add Reader, Writer, ReaderUtil, WriterUtil to prelude. Close #4182.Graydon Hoare-1/+3
2013-03-18librustc: Make the compiler ignore purity.Patrick Walton-2/+2
2013-03-18libsyntax: Stop parsing old lifetimes, except for the ones on data type decla...Patrick Walton-1/+1
2013-03-18librustc: Convert all uses of old lifetime notation to new lifetime notation....Patrick Walton-1/+1
2013-03-13librustc: Don't accept `as Trait` anymore; fix all occurrences of it.Patrick Walton-14/+15
2013-03-11Remove uses of logBrian Anderson-6/+5
2013-03-11librustc: Replace all uses of `fn()` with `&fn()`. rs=defunPatrick Walton-15/+15
2013-03-08Fix dvec-related fallout in testsAlex Crichton-5/+3
2013-03-08core: Remove uses of DVec in io/reprAlex Crichton-20/+14
2013-03-07librustc: Convert all uses of `assert` over to `fail_unless!`Patrick Walton-40/+40
2013-03-07libcore: Remove `extern mod { ... }` from libcore. rs=deexterningPatrick Walton-5/+10
2013-03-06Add manual &self/ and &static/ and /&self declarations thatNiko Matsakis-2/+2
2013-03-06Make object types not implement associated trait. Fixes #5087.Niko Matsakis-2/+32
2013-03-06add floating-point read/write to Reader/WriterJihyun Yu-0/+108
2013-03-05auto merge of #5179 : alexcrichton/rust/default-warn-unused-import, r=graydonbors-4/+3
2013-03-04Remove unused imports throughout src/Alex Crichton-4/+3
2013-03-03libcore: Add read_until to ReaderUtil.Luqman Aden-8/+12
2013-03-02libcore: Remove `fn@`, `fn~`, and `fn&` from libcore. rs=defunPatrick Walton-9/+5
2013-02-28Remove legacy object creation mode, and convert remaining uses of itNiko Matsakis-7/+7
2013-02-27Turn old `drop` blocks into `Drop` traitsBen Striegel-2/+8
2013-02-20librustc: Separate most trait bounds with '+'. rs=plussingPatrick Walton-6/+6
2013-02-15auto merge of #4969 : nickdesaulniers/rust/issue3869, r=brsonbors-3/+3
2013-02-15libcore: Get rid of `move`.Luqman Aden-8/+8
2013-02-14Convert all uses of vec::slice to vec::view Issue #3869Nick Desaulniers-3/+3
2013-02-14librustc: Replace `impl Type : Trait` with `impl Trait for Type`. rs=implflip...Patrick Walton-10/+10
2013-02-13Remove die!, raplace invocations with fail! Issue #4524 pt 3Nick Desaulniers-7/+7
2013-02-13RIMOV core::ioBen Striegel-4/+4
2013-02-07Make ~fn non-copyable, make &fn copyable, split barefn/closure types,Niko Matsakis-3/+0
2013-02-04libcore: Add @ to ReadersPatrick Walton-9/+9
2013-02-03Converted libcore/uint-template.rs to the new string functions.Marvin Löbel-1/+1
2013-01-31Replace most invocations of fail keyword with die! macroNick Desaulniers-7/+7
2013-01-29librustc: Disallow trait bounds in types, enumerations, and structure definit...Patrick Walton-1/+1
2013-01-28Revert readline optimization and add testBrian Anderson-3/+11
2013-01-28Slightly optimize read_line()Michael Neumann-3/+3
2013-01-24convert io wrapper records into structsErick Tryzelaar-5/+10