Source file entry.ml

1
2
3
4
5
6
7
8
9
(* Cache entry *)

module type ENTRY = sig
  type t

  val default : t
  val equal : t -> t -> bool
  val hash : t -> int
end