Ejemplo n.º 1
0
 /**
  * Replace the values in the list starting at <tt>offset</tt> with the contents of the
  * <tt>values</tt> array.
  *
  * @param offset the first offset to replace
  * @param values the source of the new values
  */
 public LongSequence set(int offset, long... values) {
   set(offset, 0, values.length, values);
   return this;
 }