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.

  1. newtype Sum a

    vector-space Data.AdditiveGroup

    Monoid under group addition. Alternative to the Sum in Data.Monoid, which uses Num instead of AdditiveGroup.

  2. Sum :: a -> Sum a

    vector-space Data.AdditiveGroup

    No documentation available.

  3. Sum :: ConTag -> Arity -> LocatedA b -> [EpToken "|"] -> [EpToken "|"] -> SumOrTuple b

    ghc-lib-parser GHC.Parser.PostProcess

    Last two are the locations of the '|' before and after the payload

  4. Sum :: ConTag -> Arity -> LocatedA b -> [EpToken "|"] -> [EpToken "|"] -> SumOrTuple b

    ghc-lib-parser GHC.Parser.Types

    Last two are the locations of the '|' before and after the payload

  5. data Sum a

    lens-family-core Lens.Family

    Monoid under addition.

    Sum a <> Sum b = Sum (a + b)
    

    Examples

    >>> Sum 1 <> Sum 2 <> mempty
    Sum {getSum = 3}
    
    >>> mconcat [ Sum n | n <- [3 .. 9]]
    Sum {getSum = 42}
    

  6. module Optics.TH.Internal.Sum

    No documentation available.

  7. newtype Sum a

    optparse-generic Options.Generic

    Monoid under addition.

    Sum a <> Sum b = Sum (a + b)
    

    Examples

    >>> Sum 1 <> Sum 2 <> mempty
    Sum {getSum = 3}
    
    >>> mconcat [ Sum n | n <- [3 .. 9]]
    Sum {getSum = 42}
    

  8. Sum :: a -> Sum a

    optparse-generic Options.Generic

    No documentation available.

  9. module Rebase.Data.Functor.Sum

    No documentation available.

  10. module Control.Effect.Sum

    Operations on sums, combining effects into a signature.

Page 5 of many | Previous | Next