1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
type t =
| Unit
| Int of int
| Bool of bool
| String of string
| Bytes of bytes
| Char of char
| Float of float
| Sexp of Sexp0.t
| Option of t option
| List of t list
| Array of t array
| Tuple of t list
| Record of (string * t) list
| Variant of string * t list
| Map of (t * t) list
| Set of t list