Function allocNextIntoArrayList [src]
Equivalent to allocNextIntoArrayListMax(value_list, when, default_max_value_len);
Prototype
pub fn allocNextIntoArrayList(self: *@This(), value_list: *std.array_list.Managed(u8), when: AllocWhen) Reader.AllocError!?[]const u8
Parameters
self: *@This()
value_list: *std.array_list.Managed(u8)
when: AllocWhen
Possible Errors
Source
pub fn allocNextIntoArrayList(self: *@This(), value_list: *std.array_list.Managed(u8), when: AllocWhen) Reader.AllocError!?[]const u8 {
return self.allocNextIntoArrayListMax(value_list, when, default_max_value_len);
}