package sequoia

  1. Overview
  2. Docs
Legend:
Library
Module
Module type
Parameter
Class
Class type
type t +=
  1. | Bool : string * 't Sequoia_table.t -> ('t, bool option) t
  2. | Int : string * 't Sequoia_table.t -> ('t, int option) t
  3. | Float : string * 't Sequoia_table.t -> ('t, float option) t
  4. | String : string * 't Sequoia_table.t -> ('t, string option) t
  5. | Blob : string * 't Sequoia_table.t -> ('t, bytes option) t
    (*

    The type of nullable fields.

    *)
val bool : 't Sequoia_table.t -> string -> ('t, bool option) t

A nullable boolean field.

val int : 't Sequoia_table.t -> string -> ('t, int option) t

A nullable boolean field.

A nullable int field.

val float : 't Sequoia_table.t -> string -> ('t, float option) t

A nullable int field.

A nullable float field.

val string : 't Sequoia_table.t -> string -> ('t, string option) t

A nullable float field.

A nullable string field.

val blob : 't Sequoia_table.t -> string -> ('t, bytes option) t

A nullable string field.

A nullable blob field.