zig/lib/std/io/out_stream.zig
Jonathan Marler 7481582774 support Writer instead of OutStream
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.
2020-06-08 22:59:28 -04:00

3 lines
97 B
Zig

/// Deprecated: use `std.io.writer.Writer`
pub const OutStream = @import("./writer.zig").Writer;