| Safe Haskell | Safe-Inferred |
|---|---|
| Language | Haskell2010 |
Effectful.Console.ByteString.Lazy
Contents
Description
Lifted functions from Data.ByteString.Lazy.Char8 that are related to standard streams. Like the original module, you probably want to import this module qualified to avoid name clashes with the functions provided by Prelude, e.g.:
import Data.ByteString.Lazy.Char8 (ByteString) import Data.ByteString.Lazy.Char8 qualified as LBS8 import Effectful.Console.ByteString.Lazy (Console) import Effectful.Console.ByteString.Lazy qualified as Console
Synopsis
- data Console :: Effect
- runConsole :: (HasCallStack, IOE :> es) => Eff (Console : es) a -> Eff es a
- getContents :: Console :> es => Eff es ByteString
- putStr :: Console :> es => ByteString -> Eff es ()
- putStrLn :: Console :> es => ByteString -> Eff es ()
- interact :: Console :> es => (ByteString -> ByteString) -> Eff es ()
Effect
Handlers
runConsole :: (HasCallStack, IOE :> es) => Eff (Console : es) a -> Eff es a Source #
Run the Console effect.
Operations
getContents :: Console :> es => Eff es ByteString Source #
Lifted getContents.
interact :: Console :> es => (ByteString -> ByteString) -> Eff es () Source #
Lifted interact.