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.
-
refined-containers Data.HashMap.Strict.Refined Apply a function to all values in a map and collect the Left and Right results into separate (disjoint) maps.
-
refined-containers Data.HashMap.Strict.Refined Apply a function to all values in a map, together with their corresponding keys, and collect the Left and Right results into separate (disjoint) maps.
-
refined-containers Data.HashMap.Strict.Refined mapKeys f m applies f to each key of m and collects the results into a new map. For keys that were mapped to the same new key, the value is picked in an unspecified way.
-
refined-containers Data.HashMap.Strict.Refined mapKeysWith c f m applies f to each key of m and collects the results into a new map. For keys that were mapped to the same new key, c acts as the combining function for corresponding values.
-
refined-containers Data.HashMap.Strict.Refined Apply a function to all values in a map and collect only the Just results, returning a potentially smaller map.
-
refined-containers Data.HashMap.Strict.Refined Apply a function to all values in a map, together with their corresponding keys, and collect only the Just results, returning a potentially smaller map.
mapWithKey :: (Key s k -> a -> b) -> HashMap s k a -> HashMap s k brefined-containers Data.HashMap.Strict.Refined Apply a function to all values in a map, together with their corresponding keys, that are proven to be in the map. The set of keys remains the same.
-
refined-containers Data.IntMap.Refined Thread an accumularing argument through the map in ascending order of keys.
-
refined-containers Data.IntMap.Refined Thread an accumularing argument through the map in descending order of keys.
-
refined-containers Data.IntMap.Refined Apply a function to all values in a map and collect the Left and Right results into separate (disjoint) maps.