Source file literal.ml

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

  val to_string : t -> string

  val compare : t -> t -> int

  val equal : t -> t -> bool
end