Source file sigs.ml

1
2
3
4
5
6
module type VALUE = sig
  type t

  val pp : t Fmt.t
  val equal : t -> t -> bool
end