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. summaryRunning :: Summary -> !PropertyCount

    hedgehog Hedgehog.Internal.Report

    No documentation available.

  2. summaryWaiting :: Summary -> !PropertyCount

    hedgehog Hedgehog.Internal.Report

    No documentation available.

  3. sum' :: (Foldable f, Num a) => f a -> a

    extra Data.Foldable.Extra

    A generalization of sum' to Foldable instances.

  4. sumOn' :: (Foldable f, Num b) => (a -> b) -> f a -> b

    extra Data.Foldable.Extra

    A generalization of sumOn' to Foldable instances.

  5. sum' :: Num a => [a] -> a

    extra Data.List.Extra

    A strict version of sum. Unlike sum this function is always strict in the Num argument, whereas the standard version is only strict if the optimiser kicks in.

    sum' [1, 2, 3] == 6
    

  6. sumOn' :: Num b => (a -> b) -> [a] -> b

    extra Data.List.Extra

    A strict version of sum, using a custom valuation function.

    sumOn' read ["1", "2", "3"] == 6
    

  7. sum' :: Num a => [a] -> a

    extra Extra

    A strict version of sum. Unlike sum this function is always strict in the Num argument, whereas the standard version is only strict if the optimiser kicks in.

    sum' [1, 2, 3] == 6
    

  8. sumOn' :: Num b => (a -> b) -> [a] -> b

    extra Extra

    A strict version of sum, using a custom valuation function.

    sumOn' read ["1", "2", "3"] == 6
    

  9. summary :: AttributeValue -> Attribute

    blaze-html Text.Blaze.Html4.FrameSet.Attributes

    Combinator for the summary attribute. Example:

    div ! summary "bar" $ "Hello."
    
    Result:
    <div summary="bar">Hello.</div>
    

  10. summary :: AttributeValue -> Attribute

    blaze-html Text.Blaze.Html4.Strict.Attributes

    Combinator for the summary attribute. Example:

    div ! summary "bar" $ "Hello."
    
    Result:
    <div summary="bar">Hello.</div>
    

Page 40 of many | Previous | Next