Hoogle Search
Within LTS Haskell 24.28 (ghc-9.10.3)
Note that Stackage only displays results for the latest LTS and Nightly snapshot. Learn more.
mapAccum :: (a -> b -> (a, c)) -> a -> Map k b -> (a, Map k c)hashmap Data.HashMap The function mapAccum threads an accumulating argument through the map in unspecified order of keys.
mapAccumWithKey :: (a -> k -> b -> (a, c)) -> a -> Map k b -> (a, Map k c)hashmap Data.HashMap The function mapAccumWithKey threads an accumulating argument through the map in unspecified order of keys.
mapEither :: Ord k => (a -> Either b c) -> Map k a -> (Map k b, Map k c)hashmap Data.HashMap mapEitherWithKey :: Ord k => (k -> a -> Either b c) -> Map k a -> (Map k b, Map k c)hashmap Data.HashMap mapMaybe :: Ord k => (a -> Maybe b) -> Map k a -> Map k bhashmap Data.HashMap Map values and collect the Just results.
mapMaybeWithKey :: Ord k => (k -> a -> Maybe b) -> Map k a -> Map k bhashmap Data.HashMap Map keys/values and collect the Just results.
mapWithKey :: (k -> a -> b) -> Map k a -> Map k bhashmap Data.HashMap Map a function over all values in the map.
mapPwnedT :: (m a -> n b) -> PwnedT m a -> PwnedT n bhaveibeenpwned HaveIBeenPwned No documentation available.
mapGetKeyword :: FromEDN a => Text -> EDNMap -> Parser ahedn Data.EDN mapGetString :: FromEDN a => Text -> EDNMap -> Parser ahedn Data.EDN