Ejemplo n.º 1
0
 /**
  * Returns the element in the array at the specified index. <br>
  * <b>Warning: </b> as this method has to be fast, no check on specified index.
  *
  * @return the element at the specified index, as a long
  */
 public final long getLongQuick(final int idx) {
   return PrimitiveUtils.toLong(dataLong[startIndex + idx]);
 }