package typerep

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

Module Typerep.NamedSource

Sourcemodule type T0 = sig ... end
Sourcemodule type T1 = sig ... end
Sourcemodule type T2 = sig ... end
Sourcemodule type T3 = sig ... end
Sourcemodule type T4 = sig ... end
Sourcemodule type T5 = sig ... end
Sourcetype 'a t =
  1. | T0 of (module T0 with type t = 'a)
  2. | T1 of (module T1 with type t = 'a)
  3. | T2 of (module T2 with type t = 'a)
  4. | T3 of (module T3 with type t = 'a)
  5. | T4 of (module T4 with type t = 'a)
  6. | T5 of (module T5 with type t = 'a)
Sourceval arity : _ t -> int
Sourceval typename_of_t : 'a t -> 'a Typename.t
Sourceval name : _ t -> string