definition: |
hSeek :: Handle -> SeekMode -> Int -> IO () hSeek h sm pos = ((prim_hSeek $# h) $# sm) $# pos |
demand: |
arguments 1 2 3 |
deterministic: |
deterministic operation |
documentation: |
--- Set the position of a handle to a seekable stream (e.g., a file). --- If the second argument is `AbsoluteSeek`, --- `SeekFromEnd`, or `RelativeSeek`, --- the position is set relative to the beginning of the file, --- to the end of the file, or to the current position, respectively. |
failfree: |
(_, _, _) |
indeterministic: |
referentially transparent operation |
infix: |
no fixity defined |
iotype: |
{(_,_,_) |-> _} |
name: |
hSeek |
precedence: |
no precedence defined |
result-values: |
_ |
signature: |
Handle -> SeekMode -> Prelude.Int -> Prelude.IO () |
solution-complete: |
operation might suspend on free variables |
terminating: |
yes |
totally-defined: |
reducible on all ground data terms |