definition:
|
hGetUntil :: Handle -> String -> IO String
hGetUntil h d = do
l@(c:cs) <- hGetLine h
let l' = if c == '@' then "" else l
if cs == d then return ""
else hGetUntil h d >>= \ls -> return (l' ++ '\n' : ls)
|
demand:
|
no demanded arguments
|
deterministic:
|
deterministic operation
|
documentation:
|
--- Reads the contents from an input handle up to the given delimiter
--- and leaves the handle open
|
failfree:
|
(_, _)
|
indeterministic:
|
referentially transparent operation
|
infix:
|
no fixity defined
|
iotype:
|
{(_,_) |-> _}
|
name:
|
hGetUntil
|
precedence:
|
no precedence defined
|
result-values:
|
_
|
signature:
|
System.IO.Handle -> String -> Prelude.IO String
|
solution-complete:
|
operation might suspend on free variables
|
terminating:
|
possibly non-terminating
|
totally-defined:
|
reducible on all ground data terms
|