CurryInfo: base-3.4.0 / System.IO.hGetContents

definition: Info
 
hGetContents  :: Handle -> IO String
hGetContents h = do
  eof <- hIsEOF h
  if eof then hClose h >> return ""
         else do c <- hGetChar h
                 cs <- hGetContents h
                 return (c:cs)
demand: Info
 no demanded arguments
deterministic: Info
 deterministic operation
documentation: Info
 
Reads the complete contents from an input handle and closes the input handle
before returning the contents.
failfree: Info
 _
indeterministic: Info
 referentially transparent operation
infix: Info
 no fixity defined
iotype: Info
 {(_) |-> _}
name: Info
 hGetContents
precedence: Info
 no precedence defined
result-values: Info
 _
signature: Info
 Handle -> Prelude.IO String
solution-complete: Info
 operation might suspend on free variables
terminating: Info
 possibly non-terminating
totally-defined: Info
 reducible on all ground data terms