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.
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.
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.
map :: (a -> b) -> NonEmpty a -> NonEmpty bbase-compat Data.List.NonEmpty.Compat Map a function over a NonEmpty stream.
map :: (a -> b) -> DList a -> DList bdlist 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)
map :: (a -> b) -> DNonEmpty a -> DNonEmpty bdlist 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)
map :: Functor f => (a -> b) -> f a -> f butility-ht Control.Functor.HT No documentation available.
map :: Monad m => (a -> m b) -> [a] -> m [b]utility-ht Control.Monad.HT No documentation available.
-
blaze-html Text.Blaze.Html4.FrameSet Combinator for the <map> element. Example:
map $ span $ toHtml "foo"
Result:<map><span>foo</span></map>
-
blaze-html Text.Blaze.Html4.Strict Combinator for the <map> element. Example:
map $ span $ toHtml "foo"
Result:<map><span>foo</span></map>
-
blaze-html Text.Blaze.Html4.Transitional Combinator for the <map> element. Example:
map $ span $ toHtml "foo"
Result:<map><span>foo</span></map>