Re: Scaling problems for Array.slice on large arrays
Array.slice gives you a projection (i.e forwareder to old array)
rather than a new array. This can affect algorithmic complexity. If
you want a new array, use Array.copy, with parameters as in
System.arrayCopy.
Btw, I believe this design of slice was a mistake. In 2.8, slice will
give you a new array, to get a projection, you'll have to write
.view.slice.
Array.slice gives you a projection (i.e forwareder to old array)
rather than a new array. This can affect algorithmic complexity. If
you want a new array, use Array.copy, with parameters as in
System.arrayCopy.
Btw, I believe this design of slice was a mistake. In 2.8, slice will
give you a new array, to get a projection, you'll have to write
.view.slice.
Cheers
- Martin