std.json

Modules

std.json.de JSON deserialization
std.json.ser JSON serialization

A type representing a JSON value.

This module is only available if gluon is compiled with the serialization feature.

Types

type Value = 
    | Null
    | Bool Bool
    | Int Int
    | Float Float
    | String String
    | Array (Array Value)
    | Object (Map String Value)