Пример #1
0
 /**
  * Copy n elements from the other array into this one. The other array must be of a compatible
  * type.
  */
 public void storeMany(int to, PrimArray other) {
   storeMany(to, other, -1);
 }
Пример #2
0
 /**
  * Copy n elements from the other array into this one. The other array must be of a compatible
  * type.
  */
 public void storeMany(int to, PrimArray other, int count) {
   storeMany(to, other, count, 0);
 }