package typerep

  1. Overview
  2. Docs
Typerep is a library for runtime types

Install

Dune Dependency

Authors

Maintainers

Sources

v0.17.0.tar.gz
sha256=ff8268f46f447bbc95dac29a50f465625646b213e3a9638f4d773b9e17b650e8

doc/src/typerep/named_intf.ml.html

Source file named_intf.ml

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
module type S0 = sig
  type t

  val name : string
end

module type S1 = sig
  type 'a t

  val name : string
end

module type S2 = sig
  type ('a, 'b) t

  val name : string
end

module type S3 = sig
  type ('a, 'b, 'c) t

  val name : string
end

module type S4 = sig
  type ('a, 'b, 'c, 'd) t

  val name : string
end

module type S5 = sig
  type ('a, 'b, 'c, 'd, 'e) t

  val name : string
end
OCaml

Innovation. Community. Security.