summary refs log tree commit diff
path: root/library/std/src/io/buffered
AgeCommit message (Collapse)AuthorLines
2020-11-05document HACKsPeter Jaszkowiak-0/+2
2020-11-05Intra-doc links for std::io::bufferedPeter Jaszkowiak-3/+3
2020-10-26fix(docs): typo in BufWriter documentationMichele Lacchia-1/+1
2020-09-10move buffered.rs to mod.rsNathan West-0/+151
2020-09-10Refactor io/buffered.rs into submodulesNathan West-0/+1312
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.