Legend:
Library
Module
Module type
Parameter
Class
Class type
Library
Module
Module type
Parameter
Class
Class type
A module representing database rows. Rows can be retrieved as different data structures, which as passed to the row retrieval functions from the Res
module. There's built-in support for fetching rows as arrays and maps and hash tables of field name to field, but any module conforming to Row.S
can be provided to those functions.
module type S = sig ... end
module Map : S with type t = Field.t StringMap.t
Rows as field name to Field.t
maps.