Hoogle Search
Within LTS Haskell 24.6 (ghc-9.10.2)
Note that Stackage only displays results for the latest LTS and Nightly snapshot. Learn more.
map :: forall (m :: Type -> Type) a b . Monad m => (a -> b) -> Stream m a -> Stream m bleveldb-haskell Data.Stream.Monadic No documentation available.
map :: (Char -> Char) -> Text -> Textmiso Miso.String O(n) map f t is the Text obtained by applying f to each element of t. Example:
>>> let message = pack "I am not angry. Not at all." >>> T.map (\c -> if c == '.' then '!' else c) message "I am not angry! Not at all!"
Performs replacement on invalid scalar values.map :: (Ord k, Ord v1, Ord v2) => (v1 -> v2) -> SetMultimap k v1 -> SetMultimap k v2more-containers Data.Multimap.Set O(n * log n) Maps over the multimap's values. This function is useful since Set is not a functor.
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.