This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| const std = @import("std"); | |
| const io = std.io; | |
| const math = std.math; | |
| // TODO: this is a massive hack that relies on implementation details | |
| // and **WILL** break when BufferedReader or SeekableStream change, | |
| // however, I do not see any other way, so this is fine for now. | |
| /// An amalgam of `std.io.BufferedReader` and `std.io.SeekableStream`, such that they work together. | |
| /// |
NewerOlder