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.

  1. map :: forall (m :: Type -> Type) a b . Monad m => (a -> b) -> Stream m a -> Stream m b

    leveldb-haskell Data.Stream.Monadic

    No documentation available.

  2. map :: (Char -> Char) -> Text -> Text

    miso 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.

  3. map :: (Ord k, Ord v1, Ord v2) => (v1 -> v2) -> SetMultimap k v1 -> SetMultimap k v2

    more-containers Data.Multimap.Set

    O(n * log n) Maps over the multimap's values. This function is useful since Set is not a functor.

  4. map :: (Ord v1, Ord v2) => (v1 -> v2) -> Multiset v1 -> Multiset v2

    more-containers Data.Multiset

    Maps on the multiset's values.

  5. map :: (Char -> Char) -> NonEmptyText -> NonEmptyText

    non-empty-text Data.NonEmptyText

    O(n) map f t is the NonEmptyText obtained by applying f to each element of t.

  6. map :: (Char -> Char) -> CharSet -> CharSet

    parser-regex Data.CharSet

    Map a function over all Chars in a set.

  7. map :: (Char -> Char) -> CharSet -> CharSet

    parser-regex Regex.Internal.CharSet

    Map a function over all Chars in a set.

  8. map :: (a -> b) -> FoldList a -> FoldList b

    pinch 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.

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

    queues Queue

    Apply a function to every element in a queue.

  10. map :: (a -> b) -> EphemeralQueue a -> EphemeralQueue b

    queues Queue.Ephemeral

    Apply a function to every element in a queue.

Page 39 of many | Previous | Next