This website requires JavaScript.
Explore
Help
Sign In
jimzah
/
zig
Watch
1
Star
0
Fork
0
You've already forked zig
mirror of
https://github.com/ziglang/zig.git
synced
2024-11-27 23:52:31 +00:00
Code
Issues
Actions
1
Packages
Projects
Releases
Wiki
Activity
83b0e52079
zig
/
lib
/
std
/
io
/
out_stream.zig
3 lines
97 B
Zig
Raw
Normal View
History
Unescape
Escape
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 07:33:02 +01:00
/// Deprecated: use `std.io.writer.Writer`
pub
const
OutStream
=
@import
(
"
./writer.zig
"
)
.
Writer
;
Reference in New Issue
Copy Permalink