Instant is
off
|
Search plugin
|
Manual
|
haskell.org
intercalate
-text +base
Packages
text
base
intercalate
:: [a] -> [[a]] -> [a]
base
Data.List
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.
©
Neil Mitchell
2004-2012, version 4.2.11