Diffing
module type Defs = sig ... end
type change_kind =
| Deletion
| Insertion
| Modification
| Preservation
val prefix : Format.formatter -> (int * change_kind) -> unit
val style : change_kind -> Misc.Color.style list
type (!'left, !'right, !'eq, !'diff) change =
| Delete of 'left
| Insert of 'right
| Keep of 'left * 'right * 'eq
| Change of 'left * 'right * 'diff
val classify : ('a, 'b, 'c, 'd) change -> change_kind
module Define (D : Defs) : sig ... end