Json

Usage

use Json;

or

import Json;

The Json module provides a JsonSerializer and JsonDeserializer that allow for reading and writing data in the JSON format.

record JsonSerializer
proc serializeValue(writer: _writeType, const val: ?t) throws
record JsonDeserializer
proc deserializeType(reader: _readerType, type readType): readType throws
proc deserializeValue(reader: _readerType, ref val: ?readType): void throws