I only found several methods which were all unaccessible - intersperseList
.
Why isn't it accessible? Or is there somewhere a function which does the intersperse operation?
Example of functionality from ScalaZ:
scala> intersperse(List(1, 2, 3), 7)
res3: List[Int] = List(1, 7, 2, 7, 3)