Module Vcs.Num_lines_in_diff

type t = Vcs.Num_lines_in_diff.t = {
  1. insertions : Base.int;
  2. deletions : Base.int;
}
include module type of Vcs.Num_lines_in_diff with type t := t
val sexp_of_t : t -> Sexplib0.Sexp.t
val compare : t -> t -> int
val equal : t -> t -> bool
val zero : t
val (+) : t -> t -> t
val sum : t list -> t
val is_zero : t -> bool
val to_string_hum : t -> string

Returns a short string suitable for human consumption. Some examples: ["0"; "+100"; "-15"; "+1,999, -13,898"].

val total : t -> int

The addition of the insertions and deletions.