getFloat64 method
Reads 8-bytes
as a double precision floating point
value.
The offset must satisy the relations 0
≤ offset
≤ offset+8
≤ this.length
.
Implementation
double getFloat64() {
final double value = buffer.getFloat64(offset);
offset += ByteLength.f64;
return value;
}