Instant is
off
|
Search plugin
|
Manual
|
haskell.org
intersperse
+base
Packages
base
intersperse
:: a -> [a] -> [a]
base
Data.List
The
intersperse
function takes an element and a list and `intersperses' that element between the elements of the list. For example, > intersperse ',' "abcde" == "a,b,c,d,e"
©
Neil Mitchell
2004-2012, version 4.2.11