package diet

  1. Overview
  2. Docs
module type ELT = sig ... end
module type INTERVAL_SET = sig ... end
module Make (Elt : ELT) : INTERVAL_SET with type elt = Elt.t
module Int : INTERVAL_SET with type elt = int
module Int64 : INTERVAL_SET with type elt = int64