Module

Data.Functor.Product

Package
purescript-functors
Repository
purescript/purescript-functors

#Product Source

newtype Product f g a

Constructors

Instances

#product Source

product :: forall f g a. f a -> g a -> Product f g a

Create a product.

#bihoistProduct Source

bihoistProduct :: forall f g h i. (f ~> h) -> (g ~> i) -> (Product f g) ~> (Product h i)