summary refs log tree commit diff
path: root/src/libstd/io/mod.rs
AgeCommit message (Expand)AuthorLines
2015-09-03std: Account for CRLF in {str, BufRead}::linesAlex Crichton-4/+7
2015-08-30Auto merge of #27588 - cesarb:read_all, r=alexcrichtonbors-0/+107
2015-08-28Add issue number to read_exact unstable declarationsCesar Eduardo Barros-1/+1
2015-08-24Implement read_exact for the Read traitCesar Eduardo Barros-0/+107
2015-08-18Remove repetition in Seek::seek() docRemi Rampin-3/+0
2015-08-15std: Add issues to all unstable featuresAlex Crichton-12/+24
2015-08-12Remove all unstable deprecated functionalityAlex Crichton-1/+1
2015-08-02Docs: clarify return value of std::io::Seek::seekSimon Sapin-2/+3
2015-07-29Rollup merge of #27327 - steveklabnik:fix_take, r=alexcrichtonSteve Klabnik-1/+1
2015-07-27std: Deprecate a number of unstable featuresAlex Crichton-1/+1
2015-07-27Fix buffer length in std::io::takeSteve Klabnik-1/+1
2015-07-22Rollup merge of #27167 - steveklabnik:doc_std_io_take, r=alexcrichtonSteve Klabnik-2/+8
2015-07-22Rollup merge of #27157 - steveklabnik:doc_std_io_iterators, r=alexcrichtonSteve Klabnik-11/+28
2015-07-20Write better docs for std::ioSteve Klabnik-0/+229
2015-07-20Update docs for take and broadcastSteve Klabnik-2/+8
2015-07-20Document iterators in std::ioSteve Klabnik-11/+28
2015-07-16Merge branch 'doc_io_traits_enums' of https://github.com/steveklabnik/rust in...Steve Klabnik-58/+601
2015-07-16More docs for std::io free functions.Steve Klabnik-10/+10
2015-07-16More docs for std::io::WriteSteve Klabnik-12/+114
2015-07-16More docs for std::io::SeekSteve Klabnik-6/+27
2015-07-16More docs for std::io::ReadSteve Klabnik-12/+278
2015-07-16More docs for std::io::BufReadSteve Klabnik-32/+186
2015-07-15Add specializations of read_to_end for Stdin, TcpStream and File,Alisdair Owens-0/+11
2015-07-08Improve Vec::resize so that it can be used in Read::read_to_endUlrik Sverdrup-2/+10
2015-06-23doc: remove repeated wordTshepang Lekhonkhobe-1/+1
2015-05-29std::io: New ErrorKind value InvalidDataMikhail Zabaluev-1/+1
2015-05-27Use `const fn` to abstract away the contents of UnsafeCell & friends.Eduard Burtescu-2/+1
2015-05-25doc: fix io::Write::write typoTshepang Lekhonkhobe-1/+1
2015-05-19Add example code and cross-link to BufReader docsMatt Brubeck-1/+4
2015-05-10Update docs to stop referencing `BufReadExt`Corey Farwell-2/+2
2015-04-30Replaces instanced of 'an UTF' with 'a UTF'Corey Farwell-1/+1
2015-04-28Register new snapshotsTamir Duberstein-2/+1
2015-04-16deprecate Unicode functions that will be moved to crates.iokwantam-1/+1
2015-04-16Auto merge of #23682 - tamird:DRY-is-empty, r=alexcrichtonbors-1/+1
2015-04-15Fix some typos.Ms2ger-1/+1
2015-04-14Negative case of `len()` -> `is_empty()`Tamir Duberstein-1/+1
2015-04-14rollup merge of #24377: apasel422/docsAlex Crichton-6/+6
2015-04-13Refine read_to_end documentationSimonas Kazlauskas-7/+4
2015-04-13pluralize doc comment verbs and add missing periodsAndrew Paseltiner-6/+6
2015-04-06Remove outdated notice from BufRead::lines docs.Matt Brubeck-3/+0
2015-04-02Rollup merge of #23847 - bcoopers:read_clarification, r=sfacklerManish Goregaokar-8/+4
2015-03-31Test fixes and rebase conflicts, round 3Alex Crichton-24/+24
2015-03-31rollup merge of #23919: alexcrichton/stabilize-io-errorAlex Crichton-4/+3
2015-03-31std: Stabilize last bits of io::ErrorAlex Crichton-4/+3
2015-03-31Stabilize a few remaining stragglersAaron Turon-4/+6
2015-03-30Only zero at most 64k at a time. We still use the doublingbcoopers-8/+4
2015-03-29Clearer wordingbcoopers-3/+3
2015-03-2980 character line limitbcoopers-2/+3
2015-03-29Clarified and simplified algorithm for increasing size of buffer inbcoopers-5/+4
2015-03-29Auto merge of #23820 - sfackler:fast_read_to_end, r=alexcrichtonbors-31/+33