Function reader [src]
Alias for std.json.scanner.reader
Calls std.json.Reader with std.json.default_buffer_size.
Prototype
pub fn reader(allocator: Allocator, io_reader: anytype) Reader(default_buffer_size, @TypeOf(io_reader))
Parameters
allocator: Allocator
Source
pub fn reader(allocator: Allocator, io_reader: anytype) Reader(default_buffer_size, @TypeOf(io_reader)) {
return Reader(default_buffer_size, @TypeOf(io_reader)).init(allocator, io_reader);
}