definition: |
openBinaryFile :: String -> IOMode -> IO Handle openBinaryFile filename mode = (prim_openBinaryFile $## filename) $# mode |
demand: |
arguments 1 2 |
deterministic: |
deterministic operation |
documentation: |
--- Like 'System.IO.openFile', but open the file in binary mode. --- Thus, no translation of character is performed when reading --- or writing a file. --- Returns a handle to read and write the binary stream --- (e.g., with operations 'hGetByte' and 'hPutByte'). |
failfree: |
(_, _) |
indeterministic: |
referentially transparent operation |
infix: |
no fixity defined |
iotype: |
{(_,_) |-> _} |
name: |
openBinaryFile |
precedence: |
no precedence defined |
result-values: |
_ |
signature: |
String -> System.IO.IOMode -> Prelude.IO System.IO.Handle |
solution-complete: |
operation might suspend on free variables |
terminating: |
yes |
totally-defined: |
reducible on all ground data terms |