definition: |
intercalate :: [a] -> [[a]] -> [a] intercalate xs xss = concat (intersperse xs xss) |
demand: |
no demanded arguments |
deterministic: |
deterministic operation |
documentation: |
`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: |
(_, _) |
indeterministic: |
referentially transparent operation |
infix: |
no fixity defined |
iotype: |
{(_,_) |-> _} |
name: |
intercalate |
precedence: |
no precedence defined |
result-values: |
_ |
signature: |
[a] -> [[a]] -> [a] |
solution-complete: |
operation might suspend on free variables |
terminating: |
yes |
totally-defined: |
reducible on all ground data terms |