fn ArrayHashMap(comptime T: type) type
[src]
A thin wrapper around std.StringArrayHashMapUnmanaged
that implements jsonParse
, jsonParseFromValue
, and jsonStringify
. This is useful when your JSON schema has an object with arbitrary data keys instead of comptime-known struct field names.
Functions
fn jsonParse(allocator: Allocator, source: anytype, options: ParseOptions) !@This()
No documentation provided.
fn jsonParseFromValue(allocator: Allocator, source: Value, options: ParseOptions) !@This()
No documentation provided.