You can search for identifiers within the package.
in-package search v0.2.0
type value =
| Null
| Blob of Bytes.t
| Text of string
| Double of float
| Integer of Int64.t
Datatypes that can be stored by SQLite
type kind =
| INTEGER
| DOUBLE
| TEXT
| BLOB
| NULL
exception Invalid_type
val is_null : value -> bool
val to_string : value -> string
val get_string : value -> string
val get_bytes : value -> Bytes.t
val get_float : value -> float
val get_int : value -> int
val get_int64 : value -> int64
val get_bool : value -> bool