File tree 1 file changed +4
-0
lines changed
1 file changed +4
-0
lines changed Original file line number Diff line number Diff line change @@ -285,13 +285,17 @@ impl<R: Seek> Seek for BufReader<R> {
285
285
/// `.into_inner()` immediately after a seek yields the underlying reader
286
286
/// at the same position.
287
287
///
288
+ /// To seek without discarding the internal buffer, use [`seek_relative`].
289
+ ///
288
290
/// See `std::io::Seek` for more details.
289
291
///
290
292
/// Note: In the edge case where you're seeking with `SeekFrom::Current(n)`
291
293
/// where `n` minus the internal buffer length overflows an `i64`, two
292
294
/// seeks will be performed instead of one. If the second seek returns
293
295
/// `Err`, the underlying reader will be left at the same position it would
294
296
/// have if you seeked to `SeekFrom::Current(0)`.
297
+ ///
298
+ /// [`seek_relative`]: #method.seek_relative
295
299
fn seek ( & mut self , pos : SeekFrom ) -> io:: Result < u64 > {
296
300
let result: u64 ;
297
301
if let SeekFrom :: Current ( n) = pos {
You can’t perform that action at this time.
0 commit comments