CurryInfo: base-3.4.0 / Prelude.getLine

definition: Info
 
getLine :: IO String
getLine = do c <- getChar
             case c of
               '\n' -> return []
               _ -> do cs <- getLine
                       return (c : cs)
demand: Info
 no demanded arguments
deterministic: Info
 deterministic operation
documentation: Info
 
An action that reads a line from standard input and returns it.
failfree: Info
 ()
indeterministic: Info
 referentially transparent operation
infix: Info
 no fixity defined
iotype: Info
 {() |-> _}
name: Info
 getLine
precedence: Info
 no precedence defined
result-values: Info
 _
signature: Info
 IO [Char]
solution-complete: Info
 operation might suspend on free variables
terminating: Info
 possibly non-terminating
totally-defined: Info
 reducible on all ground data terms