Module Stdune__.Dyn

type t =
| Unit
| Int of int
| Bool of bool
| String of string
| Bytes of bytes
| Char of char
| Float of float
| 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
val pp : t Stdune.Fmt.t
val to_sexp : t Stdune.Sexp.Encoder.t