intersperse package:streaming

Intersperse given value between each element of the stream.
>>> S.print $ S.intersperse 0 $ each [1,2,3]
1
0
2
0
3