copy method
Copies another source to this source.
Implementation
InterleavedBuffer copy(InterleavedBuffer source) {
array = source.array.sublist(0) as TypedDataList;
count = source.count;
stride = source.stride;
usage = source.usage;
return this;
}