readDouble method

double readDouble()

Reads an IEEE 754 double-precision (64-bit) floating-point number from the byte stream.

Implementation

double readDouble() {
  _validate(8);
  double value = _getData().getFloat64(_position, endian);
  _position += 8;
  return value;
}