Safe Haskell | Safe-Inferred |
---|---|
Language | Haskell2010 |
Documentation
module System.IO
getContents' :: IO String #
The getContents'
operation returns all user input as a single string,
which is fully read before being returned
(same as hGetContents'
stdin
).
Since: base-4.15.0.0
hGetContents' :: Handle -> IO String #
The hGetContents'
operation reads all input on the given handle
before returning it as a String
and closing the handle.
Since: base-4.15.0.0