scala-parallel-collections
                                
                                 scala-parallel-collections copied to clipboard
                                
                                    scala-parallel-collections copied to clipboard
                            
                            
                            
                        Parallel collections standard library module for Scala 2.13+
## About this PR 📦 Updates * [org.scala-lang:scala-compiler](https://github.com/scala/scala) * [org.scala-lang:scala-library](https://github.com/scala/scala) from `2.13.13` to `2.13.14` 📜 [GitHub Release Notes](https://github.com/scala/scala/releases/tag/v2.13.14) - [Version Diff](https://github.com/scala/scala/compare/v2.13.13...v2.13.14) ## Usage ✅ **Please merge!** I'll automatically update this...
## About this PR 📦 Updates [org.scalacheck:scalacheck](https://github.com/typelevel/scalacheck) from `1.17.1` to `1.18.0` 📜 [GitHub Release Notes](https://github.com/typelevel/scalacheck/releases/tag/v1.18.0) - [Version Diff](https://github.com/typelevel/scalacheck/compare/v1.17.1...v1.18.0) ## Usage ✅ **Please merge!** I'll automatically update this PR to resolve...
In order to proceed towards a stable 0.5.0 version of Scala Native, it would really help to support the RC versions. I have a dependency on this library. Consensus has...
## About this PR 📦 Updates [org.scalacheck:scalacheck](https://github.com/typelevel/scalacheck) from `1.17.0` to `1.17.1` 📜 [GitHub Release Notes](https://github.com/typelevel/scalacheck/releases/tag/v1.17.1) - [Version Diff](https://github.com/typelevel/scalacheck/compare/v1.17.0...v1.17.1) ## Usage ✅ **Please merge!** I'll automatically update this PR to resolve...
as [suggested](https://github.com/scala/toolkit/issues/31#issuecomment-1722461635) by @JD557 Pros: * Convenient for folks who are crossbuilding * If we add this library to the Toolkit, as I've suggested at https://github.com/scala/toolkit/issues/31 , there is a...
```Scala import scala.collection.parallel.CollectionConverters.* IArray(1, 2, 3).par ``` is ``` value par is not a member of IArray[Int] IArray(1, 2, 3).par ```
`ParIterable` does not have a `tapEach` method unlike the normal scala interface. We should implement this
https://github.com/scala/toolkit/issues/31#issuecomment-1722466461 Starting a thread to understand why the current TaskSupport method is used for configuring concurrency and gauging level of support and enhancement required to using the implicit ExecutionContext pattern...
Hi, Scala parallel collections [docs](https://docs.scala-lang.org/overviews/parallel-collections/custom-parallel-collections.html#further-customizations-concurrent-and-other-collections) and [MOOC](https://www.coursera.org/learn/scala-parallel-programming) mention a `.remaining` method on `Splitter` and a `.splitter` method on collections returning a `Splitter`: https://github.com/scala/scala-parallel-collections/blob/7bc6f6ee2942226bc5376eb80380e102c5a4c937/core/src/main/scala/scala/collection/parallel/ParIterableLike.scala#L48-L58 In practice, `.remaining` is actually defined on...
Because the parallel collections no longer inherit from the regular collections, they don't inherit any documentation from them, which means that most methods (`map`, `groupBy`, ...) have zero documentation in...