Hoogle Search
Within LTS Haskell 24.3 (ghc-9.10.2)
Note that Stackage only displays results for the latest LTS and Nightly snapshot. Learn more.
-
The product of two bifunctors.
data
Product (f :: k -> k1 -> Type) (g :: k -> k1 -> Type) (a :: k) (b :: k1)bifunctors Data.Bifunctor.Product Form the product of two bifunctors
-
No documentation available.
-
No documentation available.
-
generic-deriving Generics.Deriving.Monoid Monoid under multiplication.
Product x <> Product y == Product (x * y)
Examples
>>> Product 3 <> Product 4 <> mempty Product {getProduct = 12}
>>> mconcat [ Product n | n <- [2 .. 10]] Product {getProduct = 3628800}
-
generic-deriving Generics.Deriving.Monoid No documentation available.
class (Num e, Element e) =>
Product ehmatrix Numeric.LinearAlgebra Matrix product and related functions
-
relude Relude.Monoid Monoid under multiplication.
Product x <> Product y == Product (x * y)
Examples
>>> Product 3 <> Product 4 <> mempty Product {getProduct = 12}
>>> mconcat [ Product n | n <- [2 .. 10]] Product {getProduct = 3628800}
-
relude Relude.Monoid No documentation available.
-
base-compat-batteries Data.Monoid.Compat Monoid under multiplication.
Product x <> Product y == Product (x * y)
Examples
>>> Product 3 <> Product 4 <> mempty Product {getProduct = 12}
>>> mconcat [ Product n | n <- [2 .. 10]] Product {getProduct = 3628800}