DataStream.prototype.readFloat = function() {
  var output = this.data.readFloatBE(this.position);
  this.position += 4;
  return output;
};