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. type family Sum (arg :: t a) :: a

    singletons-base Data.List.Singletons

    No documentation available.

  2. module Data.Generics.Sum

    Magic sum 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).

  3. module TextShow.Data.Functor.Sum

    TextShow instance for Sum. Since: 3

  4. newtype Sum a

    ghc-internal GHC.Internal.Data.Monoid

    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}
    

  5. Sum :: a -> Sum a

    ghc-internal GHC.Internal.Data.Monoid

    No documentation available.

  6. newtype Sum a

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

    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}
    

  7. Sum :: a -> Sum a

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

    No documentation available.

  8. module Algebra.NormedSpace.Sum

    Abstraction of normed vector spaces

  9. newtype Sum a

    numhask NumHask.Algebra.Additive

    A wrapper for an Additive which distinguishes the additive structure

  10. Sum :: a -> Sum a

    numhask NumHask.Algebra.Additive

    No documentation available.

Page 4 of many | Previous | Next