Skip to content

Commit c96f302

Browse files
committed
Add note to documentation
1 parent 562ba04 commit c96f302

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

src/libstd/io/buffered.rs

+4
Original file line numberDiff line numberDiff line change
@@ -285,13 +285,17 @@ impl<R: Seek> Seek for BufReader<R> {
285285
/// `.into_inner()` immediately after a seek yields the underlying reader
286286
/// at the same position.
287287
///
288+
/// To seek without discarding the internal buffer, use [`seek_relative`].
289+
///
288290
/// See `std::io::Seek` for more details.
289291
///
290292
/// Note: In the edge case where you're seeking with `SeekFrom::Current(n)`
291293
/// where `n` minus the internal buffer length overflows an `i64`, two
292294
/// seeks will be performed instead of one. If the second seek returns
293295
/// `Err`, the underlying reader will be left at the same position it would
294296
/// have if you seeked to `SeekFrom::Current(0)`.
297+
///
298+
/// [`seek_relative`]: #method.seek_relative
295299
fn seek(&mut self, pos: SeekFrom) -> io::Result<u64> {
296300
let result: u64;
297301
if let SeekFrom::Current(n) = pos {

0 commit comments

Comments
 (0)