package ecaml

  1. Overview
  2. Docs
Legend:
Page
Library
Module
Module type
Parameter
Class
Class type
Source

Source file modified_tick.ml

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
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)

let sexp_of_t = sexp_of_opaque