Module Tuple.T3
Signature for a 3-tuple module
include Ppx_sexp_conv_lib.Sexpable.S3 with type ('a, 'b, 'c) t := ('a, 'b, 'c) t
val 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.t
include Typerep_lib.Typerepable.S3 with type ('a, 'b, 'c) t := ('a, 'b, 'c) t
val 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.t
val 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 -> Core_kernel__.Import.bool) -> eq2:('b -> 'b -> Core_kernel__.Import.bool) -> eq3:('c -> 'c -> Core_kernel__.Import.bool) -> ('a, 'b, 'c) t -> ('a, 'b, 'c) t -> Core_kernel__.Import.boolval compare : cmp1:('a -> 'a -> Core_kernel__.Import.int) -> cmp2:('b -> 'b -> Core_kernel__.Import.int) -> cmp3:('c -> 'c -> Core_kernel__.Import.int) -> ('a, 'b, 'c) t -> ('a, 'b, 'c) t -> Core_kernel__.Import.int
val get3 : (_, _, 'a) t -> 'aval map1 : f:('a -> 'd) -> ('a, 'b, 'c) t -> ('d, 'b, 'c) tval map2 : f:('b -> 'd) -> ('a, 'b, 'c) t -> ('a, 'd, 'c) tval map3 : f:('c -> 'd) -> ('a, 'b, 'c) t -> ('a, 'b, 'd) tval map : ('a, 'a, 'a) t -> f:('a -> 'b) -> ('b, 'b, 'b) tval map_fst : ('a, 'b, 'c) t -> f:('a -> 'd) -> ('d, 'b, 'c) tval map_snd : ('a, 'b, 'c) t -> f:('b -> 'd) -> ('a, 'd, 'c) tval map_trd : ('a, 'b, 'c) t -> f:('c -> 'd) -> ('a, 'b, 'd) t