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. map :: (a -> b) -> DList a -> DList b

    dlist Data.DList

    map f xs is the DList obtained by applying f to each element of xs. <math>(length (toList xs)). map obeys the law:

    toList (map f xs) = map f (toList xs)
    

  2. map :: (a -> b) -> DNonEmpty a -> DNonEmpty b

    dlist Data.DList.DNonEmpty

    map f xs is the DNonEmpty obtained by applying f to each element of xs. <math>(length (toNonEmpty xs)). map obeys the law:

    toNonEmpty (map f xs) = map f (toNonEmpty xs)
    

  3. map :: Functor f => (a -> b) -> f a -> f b

    utility-ht Control.Functor.HT

    No documentation available.

  4. map :: Monad m => (a -> m b) -> [a] -> m [b]

    utility-ht Control.Monad.HT

    No documentation available.

  5. map :: Html -> Html

    blaze-html Text.Blaze.Html4.FrameSet

    Combinator for the <map> element. Example:

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

  6. map :: Html -> Html

    blaze-html Text.Blaze.Html4.Strict

    Combinator for the <map> element. Example:

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

  7. map :: Html -> Html

    blaze-html Text.Blaze.Html4.Transitional

    Combinator for the <map> element. Example:

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

  8. map :: Html -> Html

    blaze-html Text.Blaze.Html5

    Combinator for the <map> element. Example:

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

  9. map :: Html -> Html

    blaze-html Text.Blaze.XHtml1.FrameSet

    Combinator for the <map> element. Example:

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

  10. map :: Html -> Html

    blaze-html Text.Blaze.XHtml1.Strict

    Combinator for the <map> element. Example:

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

Page 5 of many | Previous | Next