What's the best way to convert a List of Lists in scala (2.9)? I have a list:
List[List[A]]
List[A]
List has the flatten method. Why not use it?
List(List(1,2), List(3,4)).flatten > List(1,2,3,4)