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 :: (MonadGen m, Ord k) => Range Int -> m (k, v) -> m (Map k v)

    hedgehog Hedgehog.Gen

    Generates a map using a Range to determine the length. This may fail to generate anything if the keys produced by the generator do not account for a large enough number of unique items to satify the required map size.

  2. map :: (MonadGen m, Ord k) => Range Int -> m (k, v) -> m (Map k v)

    hedgehog Hedgehog.Internal.Gen

    Generates a map using a Range to determine the length. This may fail to generate anything if the keys produced by the generator do not account for a large enough number of unique items to satify the required map size.

  3. map :: (a -> b) -> NonEmpty a -> NonEmpty b

    base-compat Data.List.NonEmpty.Compat

    Map a function over a NonEmpty stream.

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

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

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

    utility-ht Control.Functor.HT

    No documentation available.

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

    utility-ht Control.Monad.HT

    No documentation available.

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

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

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

Page 16 of many | Previous | Next