module Type_abstract:sig
..end
An abstract type in the sense of the typerep library is a type whose representation is unknown. Such a type has only a name that can be used to provide and register custom implementation of generics. This is typically a type obtained with the following syntax extension:
type t with typerep(abstract)
The following functors are meant to be used by the code generator, however they could
also be useful while writing low level typerep code manually.
module Make0:
module Make1:
module Make2:
module Make3:
module Make4:
module Make5:functor (
X
:
Named_intf.S5
) ->
Typerepable.S5
with type ('a, 'b, 'c, 'd, 'e) t := ('a, 'b, 'c, 'd, 'e) X.t