Hoogle Search

Within LTS Haskell 24.4 (ghc-9.10.2)

Note that Stackage only displays results for the latest LTS and Nightly snapshot. Learn more.

  1. Product :: a -> Product a

    base-compat-batteries Data.Monoid.Compat

    No documentation available.

  2. newtype Product a

    base-compat-batteries Data.Semigroup.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}
    

  3. Product :: a -> Product a

    base-compat-batteries Data.Semigroup.Compat

    No documentation available.

  4. newtype Product v c

    ghc-typelits-natnormalise GHC.TypeLits.Normalise.SOP

    No documentation available.

  5. type family Product (arg :: t a) :: a

    singletons-base Data.List.Singletons

    No documentation available.

  6. module Data.Generics.Product

    Magic product operations using Generics These classes need not be instantiated manually, as GHC can automatically prove valid instances via Generics. Only the Generic class needs to be derived (see examples).

  7. module TextShow.Data.Functor.Product

    TextShow instance for Product. Since: 3

  8. newtype Product a

    ghc-internal GHC.Internal.Data.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}
    

  9. Product :: a -> Product a

    ghc-internal GHC.Internal.Data.Monoid

    No documentation available.

  10. newtype Product a

    ghc-internal GHC.Internal.Data.Semigroup.Internal

    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}
    

Page 3 of many | Previous | Next