Up

module Connection

: sig

Connection identifiers.

#
type t

Abstract type for connection identifiers.

#
val create : unit -> t

Create a fresh connection identifier.

#
val to_string : t -> string

Pretty-print a connection identifer.

#
val compare : t -> t -> int

Comparison function for two identifiers. More recently constructed identifiers will be greater than older ones.

#
val t_of_sexp : Sexplib.Sexp.t -> t
#
val sexp_of_t : t -> Sexplib.Sexp.t
end