package incremental

  1. Overview
  2. Docs

Source file sexp_of.ml

1
2
3
4
5
6
7
8
9
10
11
module type S = sig
  type t [@@deriving sexp_of]
end

module type S1 = sig
  type 'a t [@@deriving sexp_of]
end

module type S2 = sig
  type ('a, 'b) t [@@deriving sexp_of]
end