Function parseFromTokenSourceLeaky [src]

Alias for std.json.static.parseFromTokenSourceLeaky

scanner_or_reader must be either a *std.json.Scanner with complete input or a *std.json.Reader. Allocations made during this operation are not carefully tracked and may not be possible to individually clean up. It is recommended to use a std.heap.ArenaAllocator or similar.

Prototype

pub fn parseFromTokenSourceLeaky( comptime T: type, allocator: Allocator, scanner_or_reader: anytype, options: ParseOptions, ) ParseError(@TypeOf(scanner_or_reader.*))!T

Parameters

T: typeallocator: Allocatoroptions: ParseOptions

Source

pub fn parseFromTokenSourceLeaky( comptime T: type, allocator: Allocator, scanner_or_reader: anytype, options: ParseOptions, ) ParseError(@TypeOf(scanner_or_reader.*))!T { if (@TypeOf(scanner_or_reader.*) == Scanner) { assert(scanner_or_reader.is_end_of_input); } var resolved_options = options; if (resolved_options.max_value_len == null) { if (@TypeOf(scanner_or_reader.*) == Scanner) { resolved_options.max_value_len = scanner_or_reader.input.len; } else { resolved_options.max_value_len = default_max_value_len; } } if (resolved_options.allocate == null) { if (@TypeOf(scanner_or_reader.*) == Scanner) { resolved_options.allocate = .alloc_if_needed; } else { resolved_options.allocate = .alloc_always; } } const value = try innerParse(T, allocator, scanner_or_reader, resolved_options); assert(.end_of_document == try scanner_or_reader.next()); return value; }