You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Ack, so tired of this warning. Can backport that implementation to 2.10.x?
/*scala>*/for (i <-List(1,2,3,4).par if i %2==0) yield i
//<console>:8: warning: `withFilter' method does not yet exist on scala.collection.parallel.immutable.ParSeq[Int], using `filter' method instead// for (i <- List(1,2,3,4).par if i % 2 == 0) yield i // ^//res0: scala.collection.parallel.immutable.ParSeq[Int] = ParVector(2, 4)
The text was updated successfully, but these errors were encountered:
Ack, so tired of this warning. Can backport that implementation to 2.10.x?
The text was updated successfully, but these errors were encountered: