diff options
| author | bors <bors@rust-lang.org> | 2015-05-20 10:47:44 +0000 |
|---|---|---|
| committer | bors <bors@rust-lang.org> | 2015-05-20 10:47:44 +0000 |
| commit | 541fe5faf876121df036f089d594fd30e01b0403 (patch) | |
| tree | 631edc684ae3e2a33a61855ee7a91b966b4936be /src/libstd | |
| parent | 749cb1931fbad28ead9c619c3c5f53bbe1824aff (diff) | |
| parent | d776191d4a84dd13080b3efdb449e4c036eb3f7e (diff) | |
| download | rust-541fe5faf876121df036f089d594fd30e01b0403.tar.gz rust-541fe5faf876121df036f089d594fd30e01b0403.zip | |
Auto merge of #25610 - mbrubeck:bufread-docs, r=alexcrichton
r? @steveklabnik
Diffstat (limited to 'src/libstd')
| -rw-r--r-- | src/libstd/io/buffered.rs | 18 | ||||
| -rw-r--r-- | src/libstd/io/mod.rs | 5 |
2 files changed, 22 insertions, 1 deletions
diff --git a/src/libstd/io/buffered.rs b/src/libstd/io/buffered.rs index 43a26292618..c355be9bc78 100644 --- a/src/libstd/io/buffered.rs +++ b/src/libstd/io/buffered.rs @@ -27,6 +27,24 @@ use iter; /// For example, every call to `read` on `TcpStream` results in a system call. /// A `BufReader` performs large, infrequent reads on the underlying `Read` /// and maintains an in-memory buffer of the results. +/// +/// # Examples +/// +/// ```no_run +/// use std::io::prelude::*; +/// use std::io::BufReader; +/// use std::fs::File; +/// +/// # fn foo() -> std::io::Result<()> { +/// let mut f = try!(File::open("log.txt")); +/// let mut reader = BufReader::new(f); +/// +/// let mut line = String::new(); +/// let len = try!(reader.read_line(&mut line)); +/// println!("First line is {} bytes long", len); +/// # Ok(()) +/// # } +/// ``` #[stable(feature = "rust1", since = "1.0.0")] pub struct BufReader<R> { inner: R, diff --git a/src/libstd/io/mod.rs b/src/libstd/io/mod.rs index e7b2b01d09f..72a3a75d422 100644 --- a/src/libstd/io/mod.rs +++ b/src/libstd/io/mod.rs @@ -506,11 +506,14 @@ fn read_until<R: BufRead + ?Sized>(r: &mut R, delim: u8, buf: &mut Vec<u8>) } } -/// A Buffer is a type of reader which has some form of internal buffering to +/// A `BufRead` is a type of reader which has some form of internal buffering to /// allow certain kinds of reading operations to be more optimized than others. /// /// This type extends the `Read` trait with a few methods that are not /// possible to reasonably implement with purely a read interface. +/// +/// You can use the [`BufReader` wrapper type](struct.BufReader.html) to turn any +/// reader into a buffered reader. #[stable(feature = "rust1", since = "1.0.0")] pub trait BufRead: Read { /// Fills the internal buffer of this object, returning the buffer contents. |
