Source file sample_format.ml

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
type t = [
  | `None
  | `U8
  | `S16
  | `S32
  | `Flt
  | `Dbl
  | `U8p
  | `S16p
  | `S32p
  | `Fltp
  | `Dblp
  | `S64
  | `S64p
]