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 s k a b . (a -> b) -> Map s k a -> Map s k b

    refined-containers Data.Map.Refined

    Apply a function to all values in a map. The set of keys remains the same.

  2. map :: forall s k a b . (a -> b) -> Map s k a -> Map s k b

    refined-containers Data.Map.Strict.Refined

    Apply a function to all values in a map. The set of keys remains the same.

  3. map :: forall s a b . (Ord b, KnownSet s a) => (Element s a -> b) -> SomeSetWith (MapProof 'Regular s a b) b

    refined-containers Data.Set.Refined

    Apply the given function to each element of the set and collect the results. Note that the resulting set can be smaller.

  4. map :: MonadUnliftIO m => (a -> b) -> InputStream a -> m (InputStream b)

    unliftio-streams UnliftIO.Streams.Combinators

    No documentation available.

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

    xmonad-contrib XMonad.Config.Prime

    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]
    

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

    xmonad-contrib XMonad.Prelude

    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]
    

  7. MapCRtoLF :: TerminalMode

    unix System.Posix.Terminal

    ICRNL - Map CR to NL on input

  8. MapLFtoCR :: TerminalMode

    unix System.Posix.Terminal

    INLCR - Map NL to CR on input

  9. MapLFtoCRLF :: TerminalMode

    unix System.Posix.Terminal

    ONLCR - (XSI) Map NL to CR-NL on output

  10. MapCRtoLF :: TerminalMode

    unix System.Posix.Terminal.ByteString

    ICRNL - Map CR to NL on input

Page 47 of many | Previous | Next