Hoogle Search

Within LTS Haskell 24.4 (ghc-9.10.2)

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

  1. map :: (a -> b) -> MonoidalIntMap a -> MonoidalIntMap b

    monoidal-containers Data.IntMap.Monoidal.Strict

    No documentation available.

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

    monoidal-containers Data.Map.Monoidal

    No documentation available.

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

    monoidal-containers Data.Map.Monoidal.Strict

    No documentation available.

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

    multimap Data.MultiMap

    Map a function over all values in the map.

  5. map :: (Ord a, Ord b) => (a -> b) -> SetMap k a -> SetMap k b

    multimap Data.SetMap

    Map a function over all values in the map.

  6. map :: (a -> b) -> NEIntMap a -> NEIntMap b

    nonempty-containers Data.IntMap.NonEmpty

    O(n). IntMap a function over all values in the map.

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

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

    nonempty-containers Data.IntMap.NonEmpty.Internal

    O(n). IntMap a function over all values in the map.

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

  8. map :: (Key -> Key) -> NEIntSet -> NEIntSet

    nonempty-containers Data.IntSet.NonEmpty

    O(n*log n). 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

  9. map :: (a -> b) -> NEMap k a -> NEMap k b

    nonempty-containers Data.Map.NonEmpty

    O(n). Map a function over all values in the map.

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

  10. map :: (a -> b) -> NEMap k a -> NEMap k b

    nonempty-containers Data.Map.NonEmpty.Internal

    O(n). Map a function over all values in the map.

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

Page 29 of many | Previous | Next