package patience_diff

  1. Overview
  2. Docs
type 'a t =
  1. | Same of ('a * 'a) array
  2. | Old of 'a array
  3. | New of 'a array
  4. | Replace of 'a array * 'a array
  5. | Unified of 'a array
include sig ... end
val t_of_sexp : (Sexplib.Sexp.t -> 'a) -> Sexplib.Sexp.t -> 'a t
val sexp_of_t : ('a -> Sexplib.Sexp.t) -> 'a t -> Sexplib.Sexp.t
val all_same : 'a t list -> bool

all_same ranges returns true if all ranges are Same

val old_only : 'a t list -> 'a t list

old_only ranges drops all New ranges and converts all Replace ranges to Old ranges.

val new_only : 'a t list -> 'a t list

new_only ranges drops all Old ranges and converts all Replace ranges to New ranges.

OCaml

Innovation. Community. Security.