bug
bug copied to clipboard
Create method `IterableOnce#copyToArray(dest: Array[A], srcPos: Int, destPos: Int, len: Int): Int`
This would complete the functionality provided by System.arraycopy and allow for some nice speed boosts in things like:
Iterator#copyToArray(dest, destPos, len)could be optimized in many cases by using this method, and by settingsrcPosition = numElementsConsumedArrayBuffer->Vectorbuilding could be done without use of intermediateArrayBufferIterator
This is intended for 2.14.0 milestone