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.
mapQuality :: Accept a => [(a, b)] -> [Quality a] -> Maybe bhttp-media Network.HTTP.Media The equivalent of matchQuality above, except the resulting choice is mapped to another value. Convenient for specifying how to translate the resource into each of its available formats.
parseQuality header >>= maybe render406Error renderResource . mapQuality [ ("text" // "html", asHtml) , ("application" // "json", asJson) ]
-
mmorph Control.Monad.Trans.Compose Transform the computation inside a ComposeT.
mapAccum :: (a -> b -> (a, c)) -> a -> CharMap b -> (a, CharMap c)regex-tdfa Data.IntMap.CharMap2 No documentation available.
mapAccumWithKey :: (a -> Key -> b -> (a, c)) -> a -> CharMap b -> (a, CharMap c)regex-tdfa Data.IntMap.CharMap2 No documentation available.
mapEither :: (a -> Either b c) -> CharMap a -> (CharMap b, CharMap c)regex-tdfa Data.IntMap.CharMap2 No documentation available.
mapEitherWithKey :: (Key -> a -> Either b c) -> CharMap a -> (CharMap b, CharMap c)regex-tdfa Data.IntMap.CharMap2 No documentation available.
mapMaybe :: (a -> Maybe b) -> CharMap a -> CharMap bregex-tdfa Data.IntMap.CharMap2 No documentation available.
mapMaybeWithKey :: (Key -> a -> Maybe b) -> CharMap a -> CharMap bregex-tdfa Data.IntMap.CharMap2 No documentation available.
mapWithKey :: (Key -> a -> b) -> CharMap a -> CharMap bregex-tdfa Data.IntMap.CharMap2 No documentation available.
mapAccum :: Enum key => (a -> b -> (a, c)) -> a -> EnumMap key b -> (a, EnumMap key c)regex-tdfa Data.IntMap.EnumMap2 No documentation available.