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.

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

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

  3. mapEither :: Ord k => (a -> Either b c) -> Map k a -> (Map k b, Map k c)

    hashmap Data.HashMap

    Map values and separate the Left and Right results.

  4. mapEitherWithKey :: Ord k => (k -> a -> Either b c) -> Map k a -> (Map k b, Map k c)

    hashmap Data.HashMap

    Map keys/values and separate the Left and Right results.

  5. mapMaybe :: Ord k => (a -> Maybe b) -> Map k a -> Map k b

    hashmap Data.HashMap

    Map values and collect the Just results.

  6. mapMaybeWithKey :: Ord k => (k -> a -> Maybe b) -> Map k a -> Map k b

    hashmap Data.HashMap

    Map keys/values and collect the Just results.

  7. mapWithKey :: (k -> a -> b) -> Map k a -> Map k b

    hashmap Data.HashMap

    Map a function over all values in the map.

  8. mapPwnedT :: (m a -> n b) -> PwnedT m a -> PwnedT n b

    haveibeenpwned HaveIBeenPwned

    No documentation available.

  9. mapGetKeyword :: FromEDN a => Text -> EDNMap -> Parser a

    hedn Data.EDN

    Get a value from EDNMap for a Keyword key.

  10. mapGetString :: FromEDN a => Text -> EDNMap -> Parser a

    hedn Data.EDN

    Get a value from EDNMap for a String key.

Page 296 of many | Previous | Next