Source file diffable_intf.ml

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
module type S_plain = sig
  type t

  module Diff : Diff_intf.S_plain with type derived_on = t
end

module type S = sig
  type t

  module Diff : Diff_intf.S with type derived_on = t
end

module type S_atomic = sig
  type t

  module Diff : Diff_intf.S_atomic with type derived_on = t
end

module type S1_plain = sig
  type 'a t

  module Diff : Diff_intf.S1_plain with type 'a derived_on = 'a t
end

module type S1 = sig
  type 'a t

  module Diff : Diff_intf.S1 with type 'a derived_on = 'a t
end

module type S2_plain = sig
  type ('a, 'b) t

  module Diff : Diff_intf.S2_plain with type ('a, 'b) derived_on = ('a, 'b) t
end

module type S2 = sig
  type ('a, 'b) t

  module Diff : Diff_intf.S2 with type ('a, 'b) derived_on = ('a, 'b) t
end