gluon 0.18.2

A static, type inferred programming language for application embedding
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
//! A type representing a JSON value.
//!
//! _This module is only available if gluon is compiled with the `serialization` feature._

let { Map, ? } = import! std.map
let { ? } = import! std.array

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

{ Value }