zig/test
Andrew Kelley 4543413491 std.io: introduce buffered I/O and change API
I started working on #465 and made some corresponding std.io
API changes.

New structs:
 * std.io.FileInStream
 * std.io.FileOutStream
 * std.io.BufferedOutStream
 * std.io.BufferedInStream

Removed:
 * std.io.File.in_stream
 * std.io.File.out_stream

Now instead of &file.out_stream or &file.in_stream to get access to
the stream API for a file, you get it like this:

var file_in_stream = io.FileInStream.init(&file);
const in_stream = &file_in_stream.stream;

var file_out_stream = io.FileOutStream.init(&file);
const out_stream = &file_out_stream.stream;

This is evidence that we might not need any OOP features -
See #130.
2017-11-07 03:22:27 -05:00
..
cases add @memberType and @memberName builtin functions 2017-11-06 22:07:19 -05:00
standalone update std.os.ChildProcess API 2017-09-26 01:01:49 -04:00
assemble_and_link.zig @import("builtin") instead of @compileVar 2017-05-01 13:12:38 -04:00
behavior.zig more compile-time type reflection 2017-11-03 00:00:57 -04:00
build_examples.zig std.os.ChildProcess: on windows cwd affects exe search path 2017-10-16 02:30:03 -04:00
compare_output.zig std.io: introduce buffered I/O and change API 2017-11-07 03:22:27 -05:00
compile_errors.zig add @memberType and @memberName builtin functions 2017-11-06 22:07:19 -05:00
debug_safety.zig fix debug safety tests on windows 2017-10-16 00:20:51 -04:00
parsec.zig fix parse-c tests 2017-10-01 21:42:33 -04:00
tests.zig std.io: introduce buffered I/O and change API 2017-11-07 03:22:27 -05:00