Module Bastet__Tuple
val first : ('a * 'b) -> 'aval second : ('a * 'b) -> 'bval swap : 'a -> 'b -> 'b * 'aval curry : (('a * 'b) -> 'c) -> 'a -> 'b -> 'cval uncurry : ('a -> 'b -> 'c) -> ('a * 'b) -> 'c
module type MAGMA_F = functor (First : Bastet.Interface.MAGMA) -> functor (Second : Bastet.Interface.MAGMA) -> Bastet.Interface.MAGMA with type t = First.t * Second.tmodule type SEMIGROUP_F = functor (First : Bastet.Interface.SEMIGROUP) -> functor (Second : Bastet.Interface.SEMIGROUP) -> Bastet.Interface.SEMIGROUP with type t = First.t * Second.tmodule type MONOID_F = functor (First : Bastet.Interface.MONOID) -> functor (Second : Bastet.Interface.MONOID) -> Bastet.Interface.MONOID with type t = First.t * Second.tmodule type FUNCTOR_F = functor (T : Bastet.Interface.TYPE) -> Bastet.Interface.FUNCTOR with type 'a t = T.t * 'amodule type APPLY_F = functor (S : Bastet.Interface.SEMIGROUP) -> Bastet.Interface.APPLY with type 'a t = S.t * 'amodule type APPLICATIVE_F = functor (M : Bastet.Interface.MONOID) -> Bastet.Interface.APPLICATIVE with type 'a t = M.t * 'amodule type MONAD_F = functor (M : Bastet.Interface.MONOID) -> Bastet.Interface.MONAD with type 'a t = M.t * 'amodule type FOLDABLE_F = functor (T : Bastet.Interface.TYPE) -> Bastet.Interface.FOLDABLE with type 'a t = T.t * 'amodule type EQ_F = functor (First : Bastet.Interface.EQ) -> functor (Second : Bastet.Interface.EQ) -> Bastet.Interface.EQ with type t = First.t * Second.tmodule type SHOW_F = functor (First : Bastet.Interface.SHOW) -> functor (Second : Bastet.Interface.SHOW) -> Bastet.Interface.SHOW with type t = First.t * Second.tmodule type TRAVERSABLE_F = functor (T : Bastet.Interface.TYPE) -> functor (A : Bastet.Interface.APPLICATIVE) -> Bastet.Interface.TRAVERSABLE with type 'a t = T.t * 'a and type 'a applicative_t = 'a A.tmodule Semigroup : SEMIGROUP_Fmodule Applicative : APPLICATIVE_Fmodule Foldable : FOLDABLE_Fmodule Traversable : TRAVERSABLE_Fmodule Semigroupoid : Bastet.Interface.SEMIGROUPOID with type ('a, 'b) t = 'a * 'bmodule Bifunctor : Bastet.Interface.BIFUNCTOR with type ('a, 'b) t = 'a * 'bmodule Biapply : Bastet.Interface.BIAPPLY with type ('a, 'b) t = 'a * 'bmodule Biapplicative : Bastet.Interface.BIAPPLICATIVE with type ('a, 'b) t = 'a * 'bmodule Bifoldable : Bastet.Interface.BIFOLDABLE with type ('a, 'b) t = 'a * 'bmodule type BITRAVERSABLE_F = functor (A : Bastet.Interface.APPLICATIVE) -> Bastet.Interface.BITRAVERSABLE with type 'a applicative_t = 'a A.t and type ('a, 'b) t = 'a * 'bmodule Bitraversable : BITRAVERSABLE_Fmodule Infix : sig ... end