Source file hashable.ml

1
2
3
4
5
6
7
module type S = sig
  type t

  val equal : t -> t -> bool

  val hash : t -> int
end