definition: |
hPutStrLn :: Handle -> String -> IO () hPutStrLn h s = hPutStr h s >> hPutChar h '\n' |
demand: |
no demanded arguments |
deterministic: |
deterministic operation |
documentation: |
--- Puts a string with a newline to an output handle. |
failfree: |
(_, _) |
indeterministic: |
referentially transparent operation |
infix: |
no fixity defined |
iotype: |
{(_,_) |-> _} |
name: |
hPutStrLn |
precedence: |
no precedence defined |
result-values: |
_ |
signature: |
Handle -> String -> Prelude.IO () |
solution-complete: |
operation might suspend on free variables |
terminating: |
possibly non-terminating |
totally-defined: |
reducible on all ground data terms |