diff options
| author | Andrew Kelley <andrew@ziglang.org> | 2021-01-09 13:04:08 -0800 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-01-09 13:04:08 -0800 |
| commit | 29928af6005997d2b02b4c3a3576a696a02fa269 (patch) | |
| tree | 9852e606adc5bc065e758482445bb6d1c5ead99c /lib/std/array_list.zig | |
| parent | a0ad2dee6a0b3bb7fd04032f6113206f7b4e73eb (diff) | |
| parent | e72472d953f5e91d37bc5f1bf1ec7b6fb5b1afe2 (diff) | |
| download | zig-29928af6005997d2b02b4c3a3576a696a02fa269.tar.gz zig-29928af6005997d2b02b4c3a3576a696a02fa269.zip | |
Merge pull request #7729 from jayschwa/remove-deprecated-stream
Remove deprecated stream aliases
Diffstat (limited to 'lib/std/array_list.zig')
| -rw-r--r-- | lib/std/array_list.zig | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/lib/std/array_list.zig b/lib/std/array_list.zig index 4f1cb11bc7..f30a86d8f7 100644 --- a/lib/std/array_list.zig +++ b/lib/std/array_list.zig @@ -242,9 +242,6 @@ pub fn ArrayListAligned(comptime T: type, comptime alignment: ?u29) type { return .{ .context = self }; } - /// Deprecated: use `writer` - pub const outStream = writer; - /// Same as `append` except it returns the number of bytes written, which is always the same /// as `m.len`. The purpose of this function existing is to match `std.io.Writer` API. fn appendWrite(self: *Self, m: []const u8) !usize { |
