Source file modified_tick.ml

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
open! Core
open! Import0

include (
  Int :
  sig
    type t = int [@@deriving sexp_of]

    include Comparable.S with type t := t
    include Hashable.S with type t := t
  end)

include Valueable.Make (struct
    type nonrec t = t

    let type_ = Value.Type.int
  end)