package patdiff

  1. Overview
  2. Docs
type t =
  1. | Binary_same
  2. | Binary_different of {
    1. prev_is_binary : bool;
    2. next_is_binary : bool;
    }
  3. | Hunks of Hunks.t
val create : Configuration.t -> prev:Diff_input.t -> next:Diff_input.t -> compare_assuming_text: (Configuration.t -> prev:Diff_input.t -> next:Diff_input.t -> Hunks.t) -> t
val has_no_diff : t -> bool