package grace

  1. Overview
  2. Docs

Source file identifiable.ml

1
2
3
4
5
6
module type S = sig
  type t [@@deriving sexp]

  include Comparable.S with type t := t
  include Pretty_printer.S with type t := t
end