definition:
|
mGetLine :: IO (Maybe String)
mGetLine = do
eof <- isEOF
if eof
then return Nothing
else do
c <- getChar
if ord c == 0 -- indices EOF in Curry2Go
then return Nothing
else if c == '\n'
then return $ Just []
else do mGetLine >>= maybe (return Nothing)
(\cs -> return $ Just (c:cs))
|
demand:
|
no demanded arguments
|
deterministic:
|
deterministic operation
|
documentation:
|
-- A variant of `Prelude.getLine` which returns `Nothing` if EOF is reached.
|
failfree:
|
()
|
indeterministic:
|
referentially transparent operation
|
infix:
|
no fixity defined
|
iotype:
|
{() |-> _}
|
name:
|
mGetLine
|
precedence:
|
no precedence defined
|
result-values:
|
_
|
signature:
|
Prelude.IO (Prelude.Maybe String)
|
solution-complete:
|
operation might suspend on free variables
|
terminating:
|
possibly non-terminating
|
totally-defined:
|
reducible on all ground data terms
|