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
|
type ('a, 'b) t =
{ dir : 'a * 'b
; quantity : ('a, 'b) t
; price : int * 'a
; mutable cancelled : bool
}
[@@deriving fields ~getters ~setters]
type foo =
{ a : [ `Bar | `Baz of string ]
; b : int
}
[@@deriving fields ~getters ~setters]
module Private_in_mli = struct
type ('a, 'b) t =
{ dir : 'a * 'b
; quantity : ('a, 'b) t
; price : int * 'a
; mutable cancelled : bool
}
[@@deriving fields ~getters ~setters]
end
module Private_in_ml = struct
type ('a, 'b) t = ('a, 'b) Private_in_mli.t = private
{ dir : 'a * 'b
; quantity : ('a, 'b) t
; price : int * 'a
; mutable cancelled : bool
}
[@@deriving fields ~getters ~setters]
end
|