Skip to content

Instantly share code, notes, and snippets.

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.
///