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.
putStrLn :: (Print a, MonadIO m) => a -> m ()verset Verset No documentation available.
-
xmonad-contrib XMonad.Config.Prime The same as putStr, but adds a newline character.
putStrLnWith :: Newline -> Text -> IO ()pandoc Text.Pandoc.UTF8 No documentation available.
hPutStrLn :: Handle -> String -> IO ()base System.IO The same as hPutStr, but adds a newline character.
hPutStrLn :: Handle -> String -> IO ()base GHC.IO.Handle.Text The same as hPutStr, but adds a newline character.
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.
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.
hPutStrLn :: Handle -> Text -> IO ()text Data.Text.IO Write a string to a handle, followed by a newline.
hPutStrLn :: Handle -> Text -> IO ()text Data.Text.IO.Utf8 Write a string to a handle, followed by a newline.
hPutStrLn :: Handle -> Text -> IO ()text Data.Text.Internal.IO Write a string to a handle, followed by a newline.