Module parse

Module parse 

Source
Expand description

This module contains functions for parsing json.
See val() and Error

Enums§

Error
A json parsing error

Functions§

arr
Parses a json array value, disregarding whitespace
bool
Parses a json boolean value (true/false), disregarding whitespace
null
Parses a json null value (null), disregarding whitespace
num
Parses a json number value, disregarding whitespace
obj
Parses a json object value, disregarding whitespace
str
Parses a json string, disregarding whitespace
val
Parses a json value, disregarding whitespace

Type Aliases§

Result
Return type of all parsing functions except str() which returns Result<String>