CurryInfo: base-3.4.0 / Data.List.intercalate

definition: Info
 
intercalate :: [a] -> [[a]] -> [a]
intercalate xs xss = concat (intersperse xs xss)
demand: Info
 no demanded arguments
deterministic: Info
 deterministic operation
documentation: Info
 
`intercalate xs xss` is equivalent to `(concat (intersperse xs xss))`.
It inserts the list `xs` in between the lists in `xss` and
concatenates the result.
failfree: Info
 (_, _)
indeterministic: Info
 referentially transparent operation
infix: Info
 no fixity defined
iotype: Info
 {(_,_) |-> _}
name: Info
 intercalate
precedence: Info
 no precedence defined
result-values: Info
 _
signature: Info
 [a] -> [[a]] -> [a]
solution-complete: Info
 operation might suspend on free variables
terminating: Info
 yes
totally-defined: Info
 reducible on all ground data terms