Hoogle Search
Within LTS Haskell 24.51 (ghc-9.10.3)
Note that Stackage only displays results for the latest LTS and Nightly snapshot. Learn more.
mapMaybeWithKey :: (k -> v1 -> Maybe v2) -> HashMap k v1 -> HashMap k v2rio RIO.HashMap Transform this map by applying a function to every value and retaining only some of them.
-
rio RIO.List No documentation available.
-
rio RIO.List No documentation available.
-
rio RIO.List No documentation available.
maximumByMaybe :: Foldable t => (a -> a -> Ordering) -> t a -> Maybe ario RIO.List No documentation available.
maximumMaybe :: (Ord a, Foldable t) => t a -> Maybe ario RIO.List No documentation available.
minimumByMaybe :: Foldable t => (a -> a -> Ordering) -> t a -> Maybe ario RIO.List No documentation available.
minimumMaybe :: (Ord a, Foldable t) => t a -> Maybe ario RIO.List No documentation available.
-
rio RIO.List No documentation available.
mapMaybe :: (a -> Maybe b) -> Map k a -> Map k brio RIO.Map Map values and collect the Just results.
let f x = if x == "a" then Just "new a" else Nothing mapMaybe f (fromList [(5,"a"), (3,"b")]) == singleton 5 "new a"