Ejemplo n.º 1
0
 readFloat32() {
   this._index += 4;
   return this.view.getFloat32(this._index - 4);
 }
Ejemplo n.º 2
0
 readInt16() {
   this._index += 2;
   return this.view.getInt16(this._index - 2);
 }
Ejemplo n.º 3
0
 readInt32() {
   this._index += 4;
   return this.view.getInt32(this._index - 4);
 }
Ejemplo n.º 4
0
 readInt8() {
   this._index += 1;
   return this.view.getInt8(this._index - 1);
 }