We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
bufreader_seek_relative
1 parent 861872b commit c5ac064Copy full SHA for c5ac064
library/std/src/io/buffered/bufreader.rs
@@ -234,7 +234,7 @@ impl<R: Seek> BufReader<R> {
234
/// the buffer will not be flushed, allowing for more efficient seeks.
235
/// This method does not return the location of the underlying reader, so the caller
236
/// must track this information themselves if it is required.
237
- #[unstable(feature = "bufreader_seek_relative", issue = "31100")]
+ #[stable(feature = "bufreader_seek_relative", since = "1.52.0")]
238
pub fn seek_relative(&mut self, offset: i64) -> io::Result<()> {
239
let pos = self.pos as u64;
240
if offset < 0 {
0 commit comments