Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

This is a very short question.

I have a ParIterable collection and I want to convert it "back" into Iterable. Is that possible?

share|improve this question

2 Answers

up vote 3 down vote accepted

The corresponding ScalaDoc says:

Methods:

def seq: Sequential
def par: Repr

produce the sequential or parallel implementation of the collection, respectively. Method par just returns a reference to this parallel collection. Method seq is efficient - it will not copy the elements. Instead, it will create a sequential version of the collection using the same underlying data structure. Note that this is not the case for sequential collections in general - they may copy the elements and produce a different underlying data structure.

The combination of methods toMap, toSeq or toSet along with par and seq is a flexible way to change between different collection types.

share|improve this answer
Oh, I was looking at the companion object documentation ( scala-lang.org/api/current/scala/collection/parallel/… ) the whole time. OK – Karel Bílek Jul 12 '12 at 8:54
+1 for the motivated explanation with reference to doc material – Edmondo1984 Jul 12 '12 at 8:56

Yes, just call .seq. Example:

scala> val x = Iterable(1,2,3).par
x: scala.collection.parallel.ParIterable[Int] = ParVector(1, 2, 3)

scala> x.seq
res6: Iterable[Int] = Vector(1, 2, 3)
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.