Hi
Are there any plans to specialize arraybuffer to avoid boxing? I have been starting to use arraybuilder for this reason but I wonder if there is some reason that prevents specializing arraybuffer in the standard library.
Related issue:
https://issues.scala-lang.org/plugins/servlet/mobile#issue/SI-4596
Pedro.
Pedro.
--
You received this message because you are subscribed to the Google Groups "scala-user" group.
To unsubscribe from this group and stop receiving emails from it, send an email to scala-user+...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.
How about offering specialized versions of standard collections as extension libraries? Seems like it should be easy to produce and fulfill a clear need.
This is clear, but specializing only ArrayBuffer might not be so much of a size increase wouldn't it? I understand that then the question arises about specializing some collections and not others. Fair enough, but arraybuffer is such a basic data structure that might justify the exception in my opinion.