CurryInfo: base-3.4.0 / Prelude.unwords

definition: Info
 
unwords :: [String] -> String
unwords ws = if null ws then []
                        else foldr1 (\w s -> w ++ ' ' : s) ws
demand: Info
 argument 1
deterministic: Info
 deterministic operation
documentation: Info
 
Concatenates a list of strings with a blank between two strings.
failfree: Info
 _
indeterministic: Info
 referentially transparent operation
infix: Info
 no fixity defined
iotype: Info
 {(_) |-> _}
name: Info
 unwords
precedence: Info
 no precedence defined
result-values: Info
 _
signature: Info
 [[Char]] -> [Char]
solution-complete: Info
 operation might suspend on free variables
terminating: Info
 yes
totally-defined: Info
 possibly non-reducible on same data term