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. sum :: IntegerMean -> Maybe SplitInt64

    gogol-dataflow Gogol.Dataflow.Types

    The sum of all values being aggregated.

  2. sum :: Quantiles -> Maybe Int64

    gogol-dataproc Gogol.Dataproc

    No documentation available.

  3. sum :: Quantiles -> Maybe Int64

    gogol-dataproc Gogol.Dataproc.Types

    No documentation available.

  4. sum :: Aggregation -> Maybe Sum

    gogol-datastore Gogol.Datastore

    Sum aggregator.

  5. sum :: Aggregation -> Maybe Sum

    gogol-datastore Gogol.Datastore.Types

    Sum aggregator.

  6. sum :: (Foldable t, Num a) => t a -> a

    listsafe Data.List.Safe

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

    Examples

    Basic usage:
    >>> sum []
    0
    
    >>> sum [42]
    42
    
    >>> sum [1..10]
    55
    
    >>> sum [4.1, 2.0, 1.7]
    7.8
    
    >>> sum [1..]
    * Hangs forever *
    

  7. sum :: [LogFloat] -> LogFloat

    logfloat Data.Number.LogFloat

    O(n). Compute the sum of a finite list of LogFloats, being careful to avoid underflow issues. That is, the following equivalence holds (modulo underflow and all that):

    logFloat . sum == sum . map logFloat
    
    N.B., this function requires two passes over the input. Thus, it is not amenable to list fusion, and hence will use a lot of memory when summing long lists. Since: 0.13

  8. sum :: (Foldable t, Num a) => t a -> a

    verset Verset

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

    Examples

    Basic usage:
    >>> sum []
    0
    
    >>> sum [42]
    42
    
    >>> sum [1..10]
    55
    
    >>> sum [4.1, 2.0, 1.7]
    7.8
    
    >>> sum [1..]
    * Hangs forever *
    

  9. sum :: (Foldable t, Num a) => t a -> a

    xmonad-contrib XMonad.Config.Prime

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

    Examples

    Basic usage:
    >>> sum []
    0
    
    >>> sum [42]
    42
    
    >>> sum [1..10]
    55
    
    >>> sum [4.1, 2.0, 1.7]
    7.8
    
    >>> sum [1..]
    * Hangs forever *
    

  10. sum :: (Foldable t, Num a) => t a -> a

    xmonad-contrib XMonad.Prelude

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

    Examples

    Basic usage:
    >>> sum []
    0
    
    >>> sum [42]
    42
    
    >>> sum [1..10]
    55
    
    >>> sum [4.1, 2.0, 1.7]
    7.8
    
    >>> sum [1..]
    * Hangs forever *
    

Page 20 of many | Previous | Next