Module Base.Variant

OCaml variant type.

type 'constructor t = {
name : string;

(** The position of the constructor in the type definition, starting from 0 *)

rank : int;
constructor : 'constructor;
}