package uuidm

  1. Overview
  2. Docs
Legend:
Library
Module
Module type
Parameter
Class
Class type
type t
type version = [
  1. | `V3 of t * string
  2. | `V4
  3. | `V5 of t * string
]
val nil : t
val ns_dns : t
val ns_url : t
val ns_oid : t
val ns_X500 : t
val create : version -> t
val v3 : t -> string -> t
val v5 : t -> string -> t
val v4_gen : Random.State.t -> unit -> t
val compare : t -> t -> int
val equal : t -> t -> bool
val of_bytes : ?pos:int -> string -> t option
val to_bytes : t -> string
val unsafe_to_bytes : t -> string
val of_string : ?pos:int -> string -> t option
val to_string : ?upper:bool -> t -> string
val print : ?upper:bool -> Format.formatter -> t -> unit