Hoogle Search

Within LTS Haskell 24.3 (ghc-9.10.2)

Note that Stackage only displays results for the latest LTS and Nightly snapshot. Learn more.

  1. map :: (a -> b) -> Map k a -> Map k b

    containers Data.Map.Internal

    Map a function over all values in the map.

    map (++ "x") (fromList [(5,"a"), (3,"b")]) == fromList [(3, "bx"), (5, "ax")]
    

  2. map :: (a -> b) -> Map k a -> Map k b

    containers Data.Map.Lazy

    Map a function over all values in the map.

    map (++ "x") (fromList [(5,"a"), (3,"b")]) == fromList [(3, "bx"), (5, "ax")]
    

  3. map :: (a -> b) -> Map k a -> Map k b

    containers Data.Map.Strict

    Map a function over all values in the map.

    map (++ "x") (fromList [(5,"a"), (3,"b")]) == fromList [(3, "bx"), (5, "ax")]
    

  4. map :: (a -> b) -> Map k a -> Map k b

    containers Data.Map.Strict.Internal

    Map a function over all values in the map.

    map (++ "x") (fromList [(5,"a"), (3,"b")]) == fromList [(3, "bx"), (5, "ax")]
    

  5. map :: Ord b => (a -> b) -> Set a -> Set b

    containers Data.Set

    map f s is the set obtained by applying f to each element of s. It's worth noting that the size of the result may be smaller if, for some (x,y), x /= y && f x == f y

  6. map :: Ord b => (a -> b) -> Set a -> Set b

    containers Data.Set.Internal

    map f s is the set obtained by applying f to each element of s. It's worth noting that the size of the result may be smaller if, for some (x,y), x /= y && f x == f y

  7. map :: (a -> b) -> KeyMap a -> KeyMap b

    aeson Data.Aeson.KeyMap

    Map a function over all values in the map.

  8. map :: (v1 -> v2) -> HashMap k v1 -> HashMap k v2

    unordered-containers Data.HashMap.Internal

    Transform this map by applying a function to every value.

  9. map :: (a -> b) -> Array a -> Array b

    unordered-containers Data.HashMap.Internal.Array

    No documentation available.

  10. map :: (v1 -> v2) -> HashMap k v1 -> HashMap k v2

    unordered-containers Data.HashMap.Internal.Strict

    Transform this map by applying a function to every value.

Page 3 of many | Previous | Next