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

    Transform this map by applying a function to every value.

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

    unordered-containers Data.HashMap.Strict

    Transform this map by applying a function to every value.

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

  4. 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"]
    

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

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

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

    case-insensitive Data.CaseInsensitive

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

  8. map :: (MonadGen m, Ord k) => Range Int -> m (k, v) -> m (Map k v)

    hedgehog Hedgehog.Gen

    Generates a map using a Range to determine the length. This may fail to generate anything if the keys produced by the generator do not account for a large enough number of unique items to satify the required map size.

  9. map :: (MonadGen m, Ord k) => Range Int -> m (k, v) -> m (Map k v)

    hedgehog Hedgehog.Internal.Gen

    Generates a map using a Range to determine the length. This may fail to generate anything if the keys produced by the generator do not account for a large enough number of unique items to satify the required map size.

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

    base-compat Data.List.NonEmpty.Compat

    Map a function over a NonEmpty stream.

Page 4 of many | Previous | Next