Closed
Description
Feature gate: #![feature(seek_seek_relative)]
This is a tracking issue for adding an additional method on the std::io::Seek
trait that can only seek relative to the current position and which doesn't return the stream position.
Public API
trait Seek {
fn seek_relative(&mut self, offset: i64) -> Result<()>;
}
Steps / History
- Implementation: Add Seek::seek_relative #116750
- Final comment period (FCP)1
- Stabilization PR
Unresolved Questions
- None yet.