Hoogle Search

Within LTS Haskell 24.25 (ghc-9.10.3)

Note that Stackage only displays results for the latest LTS and Nightly snapshot. Learn more.

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

    extra Data.Foldable.Extra

    A generalization of sumOn' to Foldable instances.

  2. 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
    

  3. 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
    

  4. 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
    

  5. 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
    

  6. 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>
    

  7. 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>
    

  8. summary :: AttributeValue -> Attribute

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

    Combinator for the summary attribute. Example:

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

  9. summary :: Html -> Html

    blaze-html Text.Blaze.Html5

    Combinator for the <summary> element. Example:

    summary $ span $ toHtml "foo"
    
    Result:
    <summary><span>foo</span></summary>
    

  10. summary :: AttributeValue -> Attribute

    blaze-html Text.Blaze.Html5.Attributes

    Combinator for the summary attribute. Example:

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

Page 40 of many | Previous | Next