Hoogle Search

Within LTS Haskell 24.32 (ghc-9.10.3)

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

  1. data ProductUnitSupport

    relational-schemas Database.Custom.IBMDB2

    Unit of product is supported or not.

  2. data ProductUnitSupport

    relational-schemas Database.Custom.MySQL

    Unit of product is supported or not.

  3. data ProductUnitSupport

    relational-schemas Database.Custom.Oracle

    Unit of product is supported or not.

  4. data ProductUnitSupport

    relational-schemas Database.Custom.PostgreSQL

    Unit of product is supported or not.

  5. data ProductUnitSupport

    relational-schemas Database.Custom.SQLServer

    Unit of product is supported or not.

  6. data ProductUnitSupport

    relational-schemas Database.Custom.SQLite3

    Unit of product is supported or not.

  7. productOf :: Num a => Getting (Endo (Endo a)) s a -> s -> a

    lens Control.Lens.Combinators

    Calculate the Product of every number targeted by a Fold.

    >>> productOf both (4,5)
    20
    
    >>> productOf folded [1,2,3,4,5]
    120
    
    productproductOf folded
    
    This operation may be more strict than you would expect. If you want a lazier version use ala Product . foldMapOf
    productOf :: Num a => Getter s a     -> s -> a
    productOf :: Num a => Fold s a       -> s -> a
    productOf :: Num a => Lens' s a      -> s -> a
    productOf :: Num a => Iso' s a       -> s -> a
    productOf :: Num a => Traversal' s a -> s -> a
    productOf :: Num a => Prism' s a     -> s -> a
    

  8. productOf :: Num a => Getting (Endo (Endo a)) s a -> s -> a

    lens Control.Lens.Fold

    Calculate the Product of every number targeted by a Fold.

    >>> productOf both (4,5)
    20
    
    >>> productOf folded [1,2,3,4,5]
    120
    
    productproductOf folded
    
    This operation may be more strict than you would expect. If you want a lazier version use ala Product . foldMapOf
    productOf :: Num a => Getter s a     -> s -> a
    productOf :: Num a => Fold s a       -> s -> a
    productOf :: Num a => Lens' s a      -> s -> a
    productOf :: Num a => Iso' s a       -> s -> a
    productOf :: Num a => Traversal' s a -> s -> a
    productOf :: Num a => Prism' s a     -> s -> a
    

  9. productC :: forall (m :: Type -> Type) a o . (Monad m, Num a) => ConduitT a o m a

    conduit Conduit

    Get the product of all values in the stream.

  10. productCE :: forall (m :: Type -> Type) mono o . (Monad m, MonoFoldable mono, Num (Element mono)) => ConduitT mono o m (Element mono)

    conduit Conduit

    Get the product of all elements in the chunked stream.

Page 72 of many | Previous | Next