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 :: (v1 -> v2) -> HashMap k v1 -> HashMap k v2

    unordered-containers Data.HashMap.Internal

    Transform this map by applying a function to every value.

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

    unordered-containers Data.HashMap.Internal.Array

    No documentation available.

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

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

    unordered-containers Data.HashMap.Lazy

    Transform this map by applying a function to every value.

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

    unordered-containers Data.HashMap.Strict

    Transform this map by applying a function to every value.

  6. map :: (Hashable b, Eq b) => (a -> b) -> HashSet a -> HashSet b

    unordered-containers Data.HashSet

    Transform this set by applying a function to every value. The resulting set may be smaller than the source.

    >>> HashSet.map show (HashSet.fromList [1,2,3])
    HashSet.fromList ["1","2","3"]
    

  7. map :: (Hashable b, Eq b) => (a -> b) -> HashSet a -> HashSet b

    unordered-containers Data.HashSet.Internal

    Transform this set by applying a function to every value. The resulting set may be smaller than the source.

    >>> HashSet.map show (HashSet.fromList [1,2,3])
    HashSet.fromList ["1","2","3"]
    

  8. map :: forall (m :: Type -> Type) a b . Monad m => (a -> b) -> ConduitT a b m ()

    conduit Data.Conduit.Combinators

    Apply a transformation to all values in a stream. Subject to fusion

  9. map :: forall (m :: Type -> Type) a b . Monad m => (a -> b) -> ConduitT a b m ()

    conduit Data.Conduit.List

    Apply a transformation to all values in a stream. Subject to fusion Since 0.3.0

  10. map :: FoldCase s2 => (s1 -> s2) -> CI s1 -> CI s2

    case-insensitive Data.CaseInsensitive

    Transform the original string-like value but keep it case insensitive.

Page 15 of many | Previous | Next