Hoogle Search

Within LTS Haskell 24.4 (ghc-9.10.2)

Note that Stackage only displays results for the latest LTS and Nightly snapshot. Learn more.

  1. map :: (PrimType a, PrimType b) => (a -> b) -> UArray a -> UArray b

    basement Basement.UArray

    No documentation available.

  2. map :: (Word8 -> Word8) -> Bytes -> Bytes

    byteslice Data.Bytes

    Map over bytes in a sequence. The result has the same length as the argument.

  3. map :: (a -> b) -> EnumMap k a -> EnumMap k b

    enummapset Data.EnumMap.Lazy

    No documentation available.

  4. map :: (a -> b) -> EnumMap k a -> EnumMap k b

    enummapset Data.EnumMap.Strict

    No documentation available.

  5. map :: Enum k => (k -> k) -> EnumSet k -> EnumSet k

    enummapset Data.EnumSet

    No documentation available.

  6. map :: (Index ix, Source r e') => (e' -> e) -> Array r ix e' -> Array D ix e

    massiv Data.Massiv.Array

    Map a function over an array

  7. map :: forall (m :: Type -> Type) r . Monad m => (Word8 -> Word8) -> Pipe ByteString ByteString m r

    pipes-bytestring Pipes.ByteString

    Apply a transformation to each Word8 in the stream

  8. map :: Functor f => (a -> b) -> f a -> f b

    protolude Protolude

    No documentation available.

  9. map :: Ord c => (a -> c) -> Bimap a b -> Bimap c b

    bimap Data.Bimap

    O(n*log n) Map a function over all the left keys in the map. Version 0.3

  10. map :: (a -> b) -> [a] -> [b]

    ghc-internal GHC.Internal.Base

    map f xs is the list obtained by applying f to each element of xs, i.e.,

    map f [x1, x2, ..., xn] == [f x1, f x2, ..., f xn]
    map f [x1, x2, ...] == [f x1, f x2, ...]
    
    this means that map id == id

    Examples

    >>> map (+1) [1, 2, 3]
    [2,3,4]
    
    >>> map id [1, 2, 3]
    [1,2,3]
    
    >>> map (\n -> 3 * n + 1) [1, 2, 3]
    [4,7,10]
    

Page 24 of many | Previous | Next