package cosovo

  1. Overview
  2. Docs

Module Cosovo.TypesSource

Sourcetype value = [
  1. | `Int of int
  2. | `Float of float
  3. | `String of string
]
Sourcetype dense = value list
Sourcetype sparse = (int * value) list
Sourcetype row = [
  1. | `Dense of dense
  2. | `Sparse of sparse
  3. | `EOF
]
Sourcetype header = [
  1. | `Dense of string list
  2. | `Sparse of (int * string) list
]
Sourcetype opt_row = value option list