package typerep

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

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
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.