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 are perfomed on specified index.
  * Also, no <tt>ConcurrentModificationException</tt> will be thrown (thus, it is higly
  * discouraged to use it unless you know exactly what it is done with the internal array).
  *
  * @return the element at the specified index, as a float
  */
 public final float getFloatQuick(final int idx) {
   return PrimitiveUtils.toFloat(dataFloat[startIndex + idx]);
 }