Description
Somebody brought up scala.collection.mutable.UnrolledBuffer
in the gitter channel. I guess there was some confusion about what it was for.
It appears that UnrolledBuffer
is an internal-only class. It was marked sealed in 2.12 after it was deprecated for sub-classing in 2.11. Seems it is only needed for parallel collections, not for the collections generally. Someone should probably confirm that finding.
Parallel collections is going to be split out in 2.13. Maybe this class should be marked deprecated and moved to the new parallel collections module? It was probably just missed because it was brought over into the collection.mutable
namespace in scala/scala@78a48c4. Is there a reason for it to stay?
PS. @SethTisue suggested a ticket be created to at least investigate if there was an oversight.