Hoogle Search

Within LTS Haskell 24.6 (ghc-9.10.2)

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

  1. product :: (C sh, Floating a) => T shA sh a -> a

    comfort-blas Numeric.BLAS.Vector.Slice

    QC.forAll genShape $ \sh@(_::+(_rows,columns)::+_) -> QC.forAll (QC.elements (Shape.indices columns)) $ \c -> QC.forAll (genVector sh $ genNumber 3) $ \xt -> let xs = takeColumn c xt in approx 1e-2 (VectorSlice.product xs) (List.product (listFromSlice (xs :: Sliced Number_)))
    

  2. product :: (Num a, Foldable f) => f (Dimensionless a) -> Dimensionless a

    dimensional Numeric.Units.Dimensional

    The product of all elements in a foldable structure.

    >>> product ([] :: [Dimensionless Double])
    1.0
    
    >>> product [pi, _4, 0.36 *~ one]
    4.523893421169302
    

  3. product :: (Num a, Foldable f) => f (Dimensionless a) -> Dimensionless a

    dimensional Numeric.Units.Dimensional.Prelude

    The product of all elements in a foldable structure.

    >>> product ([] :: [Dimensionless Double])
    1.0
    
    >>> product [pi, _4, 0.36 *~ one]
    4.523893421169302
    

  4. product :: Foldable f => f (UnitName 'NonMetric) -> UnitName 'NonMetric

    dimensional Numeric.Units.Dimensional.UnitNames

    Forms the product of a list of UnitNames. If you wish to form a heterogenous product of Metric and NonMetric units you should apply weaken to the Metric ones.

  5. product :: (Foldable t, Num a) => t a -> a

    distribution-opensuse OpenSuse.Prelude

    The product function computes the product of the numbers of a structure.

    Examples

    Basic usage:
    >>> product []
    1
    
    >>> product [42]
    42
    
    >>> product [1..10]
    3628800
    
    >>> product [4.1, 2.0, 1.7]
    13.939999999999998
    
    >>> product [1..]
    * Hangs forever *
    

  6. product :: (Ix a, Ix b, Ix c) => Relation a b -> Relation b c -> Relation a c

    ersatz Ersatz.Relation

    Constructs the composition <math> of the relations <math> and <math>, which is defined by <math>. Formula size: linear in <math>

  7. product :: a <-> Product a

    invertible Data.Invertible.Monoid

    (Un)wrap the Product monoid.

  8. product :: (Num a, Monad m) => Stream m a -> m a

    leveldb-haskell Data.Stream.Monadic

    No documentation available.

  9. product :: PrimQueryFoldP a p p' -> NonEmpty (Lateral, p) -> [PrimExpr] -> p'

    opaleye Opaleye.Internal.PrimQuery

    No documentation available.

  10. product :: NonEmpty (Lateral, Select) -> [PrimExpr] -> Select

    opaleye Opaleye.Internal.Sql

    No documentation available.

Page 15 of many | Previous | Next