File: tuples.mli

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 (17 lines) | stat: -rw-r--r-- 285 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
open Core.Std
open Typerep_experimental.Std

module M1 : sig
  type t = int * string
  val typerep_of_t : t Typerep.t
end

module M2 : sig
  type t = int * string * float
  val typerep_of_t : t Typerep.t
end

module M3 : sig
  type t = M1.t * M2.t
  val typerep_of_t : t Typerep.t
end