File: named_intf.ml

package info (click to toggle)
typerep 111.17.00-1
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 1,076 kB
  • ctags: 3,093
  • sloc: ml: 18,181; makefile: 55
file content (29 lines) | stat: -rw-r--r-- 392 bytes parent folder | download | duplicates (3)
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