about summary refs log tree commit diff
path: root/src/libcore/io.rs
AgeCommit message (Expand)AuthorLines
2013-05-13Remove re-exports from libcore/core.rcAlex Crichton-0/+5
2013-05-11auto merge of #6389 : sonwow/rust/issue-3356, r=bstriebors-1/+1
2013-05-10renamed str::from_slice to str::to_ownedYoungsoo Son-1/+1
2013-05-10core: Use the new `for` protocolAlex Crichton-0/+47
2013-05-09libcore: rename vec::each(variable) to variable.eachYoungmin Yoo-1/+1
2013-05-08libcore: Fix tests.Patrick Walton-3/+3
2013-05-08librustc: Fix merge fallout.Patrick Walton-5/+8
2013-05-08libcore: Remove more mutable fields from commPatrick Walton-34/+68
2013-05-08io: handle fread() errorsFedor Indutny-2/+12
2013-05-05Merge remote-tracking branch 'mozilla/incoming' into issue-5910-dyna-freezeNiko Matsakis-10/+0
2013-05-02Remove 'Local Variable' commentsBrendan Zabarauskas-10/+0
2013-04-30new borrow checker (mass squash)Niko Matsakis-7/+7
2013-04-18core: io: the read_until function checks bytes not chars, so type should refl...Huon Wilson-6/+6
2013-04-14core: remove unnecessary unsafe blocks/functionsAlex Crichton-14/+9
2013-04-02auto merge of #5674 : steveklabnik/rust/improve_reader_util_docs, r=catamorphismbors-40/+335
2013-04-02Remove excess trailing whitespace.Steve Klabnik-61/+61
2013-04-02remove trailing whitespaceSteve Klabnik-17/+17
2013-04-01Typo fix. u8 -> i8Steve Klabnik-1/+1
2013-04-01Improve docs for Core::ReaderUtil.Steve Klabnik-40/+335
2013-04-01Improve documentation for core::io.Steve Klabnik-8/+68
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