aboutsummaryrefslogtreecommitdiff
path: root/lib/csv/dataType.mli
blob: ebb8bc709105ce2918735d841e2b30ff90815c35 (plain)
1
2
3
4
5
6
7
8
type t =
  | Null
  | Error of string
  | Content of string
  | Integer of int
  | Float of float

val to_string : t -> string