1
0
Fork
You've already forked window_reader
0
No description
  • Rust 100%
Find a file
2023年08月30日 12:59:34 +02:00
src LinearStringWindowReader: fix reset_window_at for offset == 0 2023年08月30日 12:59:34 +02:00
.gitignore First unteasted commit 2023年08月20日 00:26:14 +02:00
Cargo.toml Remove unused dependency 2023年08月29日 23:07:56 +02:00
README.md Add documentation 2023年08月30日 01:23:05 +02:00

Window Reader

A crate for buffered readers with a sliding window to access the underlying data. Aimed at parsers and other applications which require buffering, offering the reduced memory usage of streaming approach.

The crate provides data-structures that buffer an underlying reader while providing access to the buffered data via a movable window, automatically managing the buffer.