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 :: forall a (n :: Nat) . Num a => Tree n a -> a

    ral Data.RAVec.Tree

    Non-strict sum.

  2. sum :: forall a (n :: Nat) . (Num a, SNatI n) => Tree n a -> a

    ral Data.RAVec.Tree.DF

    Non-strict sum.

  3. sum :: (Monad m, Num a) => SerialT m a -> m a

    streamly Streamly.Internal.Data.Stream.IsStream

    Determine the sum of all elements of a stream of numbers. Returns 0 when the stream is empty. Note that this is not numerically stable for floating point numbers.

    sum = Stream.fold Fold.sum
    

  4. sum :: (Monad m, Num a) => SerialT m a -> m a

    streamly Streamly.Prelude

    Determine the sum of all elements of a stream of numbers. Returns 0 when the stream is empty. Note that this is not numerically stable for floating point numbers.

    sum = Stream.fold Fold.sum
    

  5. sum :: Num a => (Key -> TomlCodec a) -> Key -> TomlCodec (Sum a)

    tomland Toml.Codec.Combinator.Monoid

    Codec for Sum wrapper for given converter's values. Decodes to Sum 0 when the key is not present.

  6. sum :: (Num a, Unboxable a) => Vector a -> a

    unboxing-vector Data.Vector.Unboxing

    No documentation available.

  7. sum :: forall a (n :: Nat) . (Num a, SNatI n) => Vec n a -> a

    vec Data.Vec.DataFamily.SpineStrict

    Non-strict sum.

  8. sum :: forall a (n :: Nat) . Num a => Vec n a -> a

    vec Data.Vec.Lazy

    Non-strict sum.

  9. sum :: forall a (n :: Nat) . (Num a, SNatI n) => Vec n a -> a

    vec Data.Vec.Lazy.Inline

    Non-strict sum.

  10. sum :: forall a (n :: Nat) . (Num a, SNatI n) => Vec n a -> a

    vec Data.Vec.Pull

    Strict sum.

Page 18 of many | Previous | Next