Hoogle Search
Within LTS Haskell 24.17 (ghc-9.10.3)
Note that Stackage only displays results for the latest LTS and Nightly snapshot. Learn more.
- getContents :: StringRWIO s => IO s- string-class - Data.String.Class - Read all user input on stdin as a single string 
- 
xmonad-contrib XMonad.Config.Prime The getContents operation returns all user input as a single string, which is read lazily as it is needed (same as hGetContents stdin). 
- 
base System.IO The getContents' operation returns all user input as a single string, which is fully read before being returned (same as hGetContents' stdin). 
- 
base-compat System.IO.Compat The getContents' operation returns all user input as a single string, which is fully read before being returned (same as hGetContents' stdin). 
- 
ghc-internal GHC.Internal.System.IO The getContents' operation returns all user input as a single string, which is fully read before being returned (same as hGetContents' stdin). 
- getContentScriptType :: (MonadDOM m, FromJSString result) => SVGSVGElement -> m result- jsaddle-dom - JSDOM.Generated.SVGSVGElement 
- getContentStyleType :: (MonadDOM m, FromJSString result) => SVGSVGElement -> m result- jsaddle-dom - JSDOM.Generated.SVGSVGElement 
- hGetContents :: Handle -> IO String- base - System.IO - Computation hGetContents hdl returns the list of characters corresponding to the unread portion of the channel or file managed by hdl, which is put into an intermediate state, semi-closed. In this state, hdl is effectively closed, but items are read from hdl on demand and accumulated in a special list returned by hGetContents hdl. Any operation that fails because a handle is closed, also fails if a handle is semi-closed. The only exception is hClose. A semi-closed handle becomes closed: - if hClose is applied to it;
- if an I/O error occurs when reading an item from the handle;
- or once the entire contents of the handle has been read.
 - isEOFError if the end of file has been reached.
 
- hGetContents' :: Handle -> IO String- base - System.IO - The hGetContents' operation reads all input on the given handle before returning it as a String and closing the handle. 
- hGetContents :: Handle -> IO String- base - GHC.IO.Handle - Computation hGetContents hdl returns the list of characters corresponding to the unread portion of the channel or file managed by hdl, which is put into an intermediate state, semi-closed. In this state, hdl is effectively closed, but items are read from hdl on demand and accumulated in a special list returned by hGetContents hdl. Any operation that fails because a handle is closed, also fails if a handle is semi-closed. The only exception is hClose. A semi-closed handle becomes closed: - if hClose is applied to it;
- if an I/O error occurs when reading an item from the handle;
- or once the entire contents of the handle has been read.
 - isEOFError if the end of file has been reached.
 
