Rel_kit.INTABLE_IDThe type for table identifiers convertible to int values.
include IDval type' : t Rel.Type.tThe rel type for table identifiers.
val v : t -> t Rel_query.valuev id injects constants identifiers into queries.
val equal : t Rel_query.value -> t Rel_query.value -> bool Rel_query.valueequal t
val (=) : t Rel_query.value -> t Rel_query.value -> bool Rel_query.value ( = ) is equal.
val to_text : t Rel_query.value -> string Rel_query.valueto_text t is t as SQL text. FIXME get rid of that.
val to_string : t -> stringto_string id should be an UTF-8 compatible encoding of id.
val of_string : string -> (t, string) Stdlib.resultof_string s parses an identifier from s.
val pp : Stdlib.Format.formatter -> t -> unitpp is a formatter for identifiers.
module Map : sig ... endMaps of identifiers.
val zero : tzero is the 0 id.
val to_int : t -> intto_int id converts id to a non-negative integer.
val of_int : int -> (t, string) Stdlib.resultof_int i converts i to an identifier. Errors if i is negative.