package volgo-base

  1. Overview
  2. Docs

Module Vcs.Num_lines_in_diffSource

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

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

Sourceval total : t -> int

The addition of the insertions and deletions.