Module Row_description.Decode

type state = {
  1. buf : bytes;
  2. mutable pos : int;
  3. amount_of_columns : int;
}
val make : bytes -> state
val get_u16 : state -> int
val get_i16 : state -> int
val get_i32 : state -> int32
val index_of_null : state -> int option
val get_str_nul : state -> string
val decode_row : state -> int -> field list -> field list * bytes