Start implementing https://github.com/ziglang/zig/issues/4917 which is to rename instream/outstream to reader/writer. This first change allows code to use Writer/writer instead of OutStream/outStream, but still maintains the old outstream names with "Deprecated" comments.
6 lines
229 B
Zig
6 lines
229 B
Zig
/// Deprecated: use `std.io.bit_writer.BitWriter`
|
|
pub const BitOutStream = @import("./bit_writer.zig").BitWriter;
|
|
|
|
/// Deprecated: use `std.io.bit_writer.bitWriter`
|
|
pub const bitOutStream = @import("./bit_writer.zig").bitWriter;
|