copyIntoArray method

void copyIntoArray(
  1. List<num> array,
  2. [int offset = 0]
)

Copies this into array starting at offset.

Implementation

void copyIntoArray(List<num> array, [int offset = 0]) {
  final i = offset;
  array[i + 8] = _m3storage[8];
  array[i + 7] = _m3storage[7];
  array[i + 6] = _m3storage[6];
  array[i + 5] = _m3storage[5];
  array[i + 4] = _m3storage[4];
  array[i + 3] = _m3storage[3];
  array[i + 2] = _m3storage[2];
  array[i + 1] = _m3storage[1];
  array[i + 0] = _m3storage[0];
}