mirror of
https://github.com/ziglang/zig.git
synced 2025-12-12 09:13:11 +00:00
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
278 B
Zig
6 lines
278 B
Zig
/// Deprecated: use `std.io.buffered_writer.BufferedWriter`
|
|
pub const BufferedOutStream = @import("./buffered_writer.zig").BufferedWriter;
|
|
|
|
/// Deprecated: use `std.io.buffered_writer.bufferedWriter`
|
|
pub const bufferedOutStream = @import("./buffered_writer.zig").bufferedWriter
|