Exemplo 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 byte
  */
 public final boolean getBooleanQuick(final int idx) {
   return PrimitiveUtils.toBoolean(dataBoolean[startIndex + idx]);
 }