module type Polymorphic3 =sig
..end
Same as Type.Polymorphic
for polymorphic types with three type variables.
type ('a, 'b, 'c)
poly
val instantiate : 'a Type.t ->
'b Type.t -> 'c Type.t -> ('a, 'b, 'c) poly Type.t * bool
val is_instance_of : 'a Type.t -> bool
val get_instance : ('a, 'b, 'c) poly Type.t ->
'a Type.t * 'b Type.t * 'c Type.t