package patience_diff

  1. Overview
  2. Docs

Source file matching_block.ml

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
module Stable = struct
  open! Core.Core_stable

  module V1 = struct
    type t =
      { prev_start : int
      ; next_start : int
      ; length : int
      }
    [@@deriving sexp, bin_io]
  end
end

open! Core
include Stable.V1