liblawless-0.23.0: Prelude based on protolude for GHC 8 and beyond.

Copyright© 2016 All rights reserved.
LicenseGPL-3
MaintainerEvan Cofsky <>
Stabilityexperimental
PortabilityPOSIX
Safe HaskellNone
LanguageHaskell2010

Text.IO

Description

 

Synopsis

Documentation

putStr :: MonadIO m => Text -> m () Source #

putStrLn :: MonadIO m => Text -> m () Source #

hPutStr :: MonadIO m => Handle -> Text -> m () Source #

hPutStrLn :: MonadIO m => Handle -> Text -> m () Source #

readLines :: forall m. MonadIO m => Handle -> SourceT m Text Source #

Read lines of Text from a Handle until $EOF$ is reached.

writeLines :: forall m. MonadIO m => Handle -> ProcessT m Text Text Source #

Write lines of Text to a Handle until there are no more. Forwards them on.