getDouble method

double getDouble()

Get a double.

@return the double value

Implementation

double getDouble() {
  double res = getDoubleAt(position);
  position += 8;
  return res;

  // int bitrep = getLong();

  // return Double.longBitsToDouble(bitrep);
}