Type.Polymorphic3
Generic implementation of polymorphic type value with three type variables.
module T : Polymorphic3_input
type ('a, 'b, 'c) poly = ( 'a, 'b, 'c ) T.t
val instantiate : 'a t -> 'b t -> 'c t -> ( 'a, 'b, 'c ) poly t * bool
val is_instance_of : 'a t -> bool
val get_instance : ( 'a, 'b, 'c ) poly t -> 'a t * 'b t * 'c t