CurryInfo: base-3.3.0 / System.IO.hPutStr

definition:
hPutStr :: Handle -> String -> IO ()
hPutStr _ []     = return ()
hPutStr h (c:cs) = hPutChar h c >> hPutStr h cs
demand:
argument 2
deterministic:
deterministic operation
documentation:
--- Puts a string to an output handle.
failfree:
(_, _)
indeterministic:
referentially transparent operation
infix:
no fixity defined
iotype:
{(_,{[]}) |-> _ || (_,{:}) |-> _}
name:
hPutStr
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