Hoogle Search
Within LTS Haskell 24.16 (ghc-9.10.3)
Note that Stackage only displays results for the latest LTS and Nightly snapshot. Learn more.
map :: (Ord v1, Ord v2) => (v1 -> v2) -> Multiset v1 -> Multiset v2more-containers Data.Multiset Maps on the multiset's values.
map :: (Char -> Char) -> NonEmptyText -> NonEmptyTextnon-empty-text Data.NonEmptyText O(n) map f t is the NonEmptyText obtained by applying f to each element of t.
map :: (Char -> Char) -> CharSet -> CharSetparser-regex Data.CharSet Map a function over all Chars in a set.
map :: (Char -> Char) -> CharSet -> CharSetparser-regex Regex.Internal.CharSet Map a function over all Chars in a set.
map :: (a -> b) -> FoldList a -> FoldList bpinch Pinch.Internal.FoldList Applies the given function to all elements in the FoldList. Note that the function is applied lazily when the results are requested. If the results of the same FoldList are requested multiple times, the function will be called multiple times on the same elements.
map :: (a -> b) -> Queue a -> Queue bqueues Queue Apply a function to every element in a queue.
map :: (a -> b) -> EphemeralQueue a -> EphemeralQueue bqueues Queue.Ephemeral Apply a function to every element in a queue.
map :: (a -> b) -> Patricia a -> Patricia bradix-tree Data.Patricia.Word.Lazy Apply a function to every value in the tree.
map :: (a -> b) -> Patricia a -> Patricia bradix-tree Data.Patricia.Word.Strict Apply a function to every value in the tree.
map :: (a -> b) -> Radix1Tree a -> Radix1Tree bradix-tree Data.Radix1Tree.Word8.Lazy Apply a function to every value in the tree.