summary refs log tree commit diff
path: root/library/std/src/io/buffered
AgeCommit message (Collapse)AuthorLines
2020-09-07Implement Seek::stream_position() for BufReaderTobias Rapp-0/+42
Optimization over BufReader::seek() for getting the current position without flushing the internal buffer. Related to #31100. Based on code in #70577.
2020-08-31std: move "mod tests/benches" to separate filesLzu Tao-0/+916
Also doing fmt inplace as requested.