Hoogle Search

Within LTS Haskell 24.40 (ghc-9.10.3)

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

  1. 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]
    

  2. MapCRtoLF :: TerminalMode

    unix System.Posix.Terminal

    ICRNL - Map CR to NL on input

  3. MapLFtoCR :: TerminalMode

    unix System.Posix.Terminal

    INLCR - Map NL to CR on input

  4. MapLFtoCRLF :: TerminalMode

    unix System.Posix.Terminal

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

  5. MapCRtoLF :: TerminalMode

    unix System.Posix.Terminal.ByteString

    ICRNL - Map CR to NL on input

  6. MapLFtoCR :: TerminalMode

    unix System.Posix.Terminal.ByteString

    INLCR - Map NL to CR on input

  7. MapLFtoCRLF :: TerminalMode

    unix System.Posix.Terminal.ByteString

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

  8. MapCRtoLF :: TerminalMode

    unix System.Posix.Terminal.PosixString

    ICRNL - Map CR to NL on input

  9. MapLFtoCR :: TerminalMode

    unix System.Posix.Terminal.PosixString

    INLCR - Map NL to CR on input

  10. MapLFtoCRLF :: TerminalMode

    unix System.Posix.Terminal.PosixString

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

Page 48 of many | Previous | Next