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