You can search for identifiers within the package.
in-package search v0.2.0
type t = {
id : Cstruct.t;
host : string;
port : int;
}
Type of node, the id should be a hash of the nodes host : port tuple, by default it uses a 64 bit FNV1A implementation
val to_string : t -> string
val of_string : string -> t
val to_cstruct : t -> Cstruct.t
val of_cstruct : Cstruct.t -> t
val make : ?id:Cstruct.t -> host:string -> port:int -> unit -> t
val compare : t -> t -> int