fn readUntilDelimiterArrayList(self: Self, array_list: *field_call, delimiter: u8, max_size: usize) !void
[src]
Deprecated: use streamUntilDelimiter
with ArrayList’s writer instead. Replaces the std.ArrayList
contents by reading from the stream until delimiter
is found. Does not include the delimiter in the result. If the std.ArrayList
length would exceed max_size
, error.StreamTooLong
is returned and the std.ArrayList
is populated with max_size
bytes from the stream.