1
Fork 0

auto merge of #10895 : sfackler/rust/io-util, r=alexcrichton

This adds a bunch of useful Reader and Writer implementations. I'm not a
huge fan of the name `util` but I can't think of a better name and I
don't want to make `std::io` any longer than it already is.
This commit is contained in:
bors 2013-12-13 02:56:43 -08:00
commit 2ec4712289
2 changed files with 298 additions and 0 deletions

View file

@ -335,6 +335,9 @@ pub mod native;
/// Signal handling
pub mod signal;
/// Utility implementations of Reader and Writer
pub mod util;
/// The default buffer size for various I/O operations
static DEFAULT_BUF_SIZE: uint = 1024 * 64;