Type.Repr
Low-level representation (unstable).
type 'a t' := 'a t
type 'a t =
| Bool : bool t
Stored as 0
and 1
| Int : int t
Stored as int64
| Int64 : int64 t
| Float : float t
| Text : string t
| Blob : string t
| Option : 'a t -> 'a option t
Column with NULLs or values of given type.
*)| Coded : ('a, 'b) Coded.t -> 'a t
An OCaml fiction.
*)| Custom : 'a Custom.t -> 'a t
A DBMS specific datatype.
*)The low-level representation column types.
to_t l
is a type from the low-level representation of l
. FIXME Try to remove.
See value_equal
.