Tuple.T3Signature for a 3-tuple module
include Ppx_sexp_conv_lib.Sexpable.S3 with type ('a, 'b, 'c) t := ('a, 'b, 'c) tval t_of_sexp : (Sexplib0.Sexp.t -> 'a) -> (Sexplib0.Sexp.t -> 'b) -> (Sexplib0.Sexp.t -> 'c) -> Sexplib0.Sexp.t -> ('a, 'b, 'c) tval sexp_of_t : ('a -> Sexplib0.Sexp.t) -> ('b -> Sexplib0.Sexp.t) -> ('c -> Sexplib0.Sexp.t) -> ('a, 'b, 'c) t -> Sexplib0.Sexp.tinclude Typerep_lib.Typerepable.S3 with type ('a, 'b, 'c) t := ('a, 'b, 'c) tval typerep_of_t : 'a Typerep_lib.Std_internal.Typerep.t -> 'b Typerep_lib.Std_internal.Typerep.t -> 'c Typerep_lib.Std_internal.Typerep.t -> ('a, 'b, 'c) t Typerep_lib.Std_internal.Typerep.tval typename_of_t : 'a Typerep_lib.Typename.t -> 'b Typerep_lib.Typename.t -> 'c Typerep_lib.Typename.t -> ('a, 'b, 'c) t Typerep_lib.Typename.tval create : 'a -> 'b -> 'c -> ('a, 'b, 'c) tval curry : (('a, 'b, 'c) t -> 'd) -> 'a -> 'b -> 'c -> 'dval uncurry : ('a -> 'b -> 'c -> 'd) -> ('a, 'b, 'c) t -> 'dval equal : eq1:('a -> 'a -> Base.Bool.t) -> eq2:('b -> 'b -> Base.Bool.t) -> eq3:('c -> 'c -> Base.Bool.t) ->
('a, 'b, 'c) t -> ('a, 'b, 'c) t -> Base.Bool.tval compare : cmp1:('a -> 'a -> Base.Int.t) -> cmp2:('b -> 'b -> Base.Int.t) -> cmp3:('c -> 'c -> Base.Int.t) ->
('a, 'b, 'c) t -> ('a, 'b, 'c) t -> Base.Int.tval get1 : ('a, _, _) t -> 'aval get2 : (_, 'a, _) t -> 'aval get3 : (_, _, 'a) t -> 'a