CurryInfo: base-3.4.0 / System.IO.hPutStr

definition: Info
 
hPutStr :: Handle -> String -> IO ()
hPutStr _ []     = return ()
hPutStr h (c:cs) = hPutChar h c >> hPutStr h cs
demand: Info
 argument 2
deterministic: Info
 deterministic operation
documentation: Info
 
Puts a string to an output handle.
failfree: Info
 (_, _)
indeterministic: Info
 referentially transparent operation
infix: Info
 no fixity defined
iotype: Info
 {(_,{[]}) |-> _ || (_,{:}) |-> _}
name: Info
 hPutStr
precedence: Info
 no precedence defined
result-values: Info
 _
signature: Info
 Handle -> String -> Prelude.IO ()
solution-complete: Info
 operation might suspend on free variables
terminating: Info
 possibly non-terminating
totally-defined: Info
 reducible on all ground data terms