Hoogle Search

Within LTS Haskell 24.10 (ghc-9.10.2)

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

  1. putStrLn :: (Print a, MonadIO m) => a -> m ()

    verset Verset

    No documentation available.

  2. putStrLn :: String -> IO ()

    xmonad-contrib XMonad.Config.Prime

    The same as putStr, but adds a newline character.

  3. putStrLnWith :: Newline -> Text -> IO ()

    pandoc Text.Pandoc.UTF8

    No documentation available.

  4. hPutStrLn :: Handle -> String -> IO ()

    base System.IO

    The same as hPutStr, but adds a newline character.

  5. hPutStrLn :: Handle -> String -> IO ()

    base GHC.IO.Handle.Text

    The same as hPutStr, but adds a newline character.

  6. hPutStrLn :: Handle -> ByteString -> IO ()

    bytestring Data.ByteString.Char8

    Write a ByteString to a handle, appending a newline byte. Unlike hPutStr, this is not atomic: other threads might write to the handle between writing of the bytestring and the newline.

  7. hPutStrLn :: Handle -> ByteString -> IO ()

    bytestring Data.ByteString.Lazy.Char8

    Write a ByteString to a handle, appending a newline byte. The chunks will be written one at a time, followed by a newline. Other threads might write to the Handle in between, and hence hPutStrLn alone is not suitable for concurrent writes.

  8. hPutStrLn :: Handle -> Text -> IO ()

    text Data.Text.IO

    Write a string to a handle, followed by a newline.

  9. hPutStrLn :: Handle -> Text -> IO ()

    text Data.Text.IO.Utf8

    Write a string to a handle, followed by a newline.

  10. hPutStrLn :: Handle -> Text -> IO ()

    text Data.Text.Internal.IO

    Write a string to a handle, followed by a newline.

Page 6 of many | Previous | Next