getFloat32 method

double getFloat32()

Reads 4-bytes as a floating point value.

The offset must satisy the relations 0offsetoffset+4this.length.

Implementation

double getFloat32() {
  final double value = buffer.getFloat32(offset);
  offset += ByteLength.f32;
  return value;
}