Tweak the interface of std::io
* Reexport io::mem and io::buffered structs directly under io, make mem/buffered private modules * Remove with_mem_writer * Remove DEFAULT_CAPACITY and use DEFAULT_BUF_SIZE (in io::buffered)
This commit is contained in:
parent
77eeddaa48
commit
295b46fc08
41 changed files with 204 additions and 180 deletions
|
@ -28,9 +28,8 @@ out.write(bytes!("Hello, world!"));
|
|||
|
||||
use container::Container;
|
||||
use fmt;
|
||||
use io::buffered::LineBufferedWriter;
|
||||
use io::{Reader, Writer, io_error, IoError, OtherIoError,
|
||||
standard_error, EndOfFile};
|
||||
standard_error, EndOfFile, LineBufferedWriter};
|
||||
use libc;
|
||||
use option::{Option, Some, None};
|
||||
use prelude::drop;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue