CurryInfo: bindata-3.0.0 / System.IO.BinaryFile.hGetBinaryContents

definition: Info
 
hGetBinaryContents  :: Handle -> IO [Byte]
hGetBinaryContents h = do
  eof <- hIsEOF h
  if eof then hClose h >> return []
         else do b <- hGetByte h
                 bs <- hGetBinaryContents h
                 return (b:bs)
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
 hGetBinaryContents
precedence: Info
 no precedence defined
result-values: Info
 _
signature: Info
 System.IO.Handle -> Prelude.IO [Prelude.Int]
solution-complete: Info
 operation might suspend on free variables
terminating: Info
 possibly non-terminating
totally-defined: Info
 reducible on all ground data terms