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