Copyright | (c) 2016 Stephen Diehl (c) 2016-2018 Serokell (c) 2018-2019 Kowainik |
---|---|
License | MIT |
Maintainer | Kowainik <xrom.xkov@gmail.com> |
Safe Haskell | Trustworthy |
Language | Haskell2010 |
Relude.Print
Description
Functions like putStr
and putStrLn
but for Text
, LText
,
ByteString
and LByteString
.
Synopsis
- putText :: MonadIO m => Text -> m ()
- putTextLn :: MonadIO m => Text -> m ()
- putLText :: MonadIO m => LText -> m ()
- putLTextLn :: MonadIO m => LText -> m ()
- putBS :: MonadIO m => ByteString -> m ()
- putBSLn :: MonadIO m => ByteString -> m ()
- putLBS :: MonadIO m => LByteString -> m ()
- putLBSLn :: MonadIO m => LByteString -> m ()
Text
& LText
putLTextLn :: MonadIO m => LText -> m () #
Lifted version of putStrLn
.
ByteString
& LByteString
putBS :: MonadIO m => ByteString -> m () #
Lifted version of putStr
.
putBSLn :: MonadIO m => ByteString -> m () #
Lifted version of putStrLn
.
putLBS :: MonadIO m => LByteString -> m () #
Lifted version of putStr
.
putLBSLn :: MonadIO m => LByteString -> m () #
Lifted version of putStrLn
.