Conditions | 1 |
Paths | 1 |
Total Lines | 18 |
Code Lines | 16 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
47 | public function benchRead(): void |
||
48 | { |
||
49 | $this->buffer->readInt8(); |
||
50 | $this->buffer->readInt16(1); |
||
51 | $this->buffer->readInt32(3); |
||
52 | $this->buffer->readInt64(7); |
||
53 | $this->buffer->readUint8(15); |
||
54 | $this->buffer->readUint16(16); |
||
55 | $this->buffer->readUint32(18); |
||
56 | $this->buffer->readUint64(22); |
||
57 | $this->buffer->readFloat(30); |
||
58 | $this->buffer->readFloat(34); |
||
59 | $this->buffer->readFloat(38); |
||
60 | $this->buffer->readDouble(42); |
||
61 | $this->buffer->readDouble(50); |
||
62 | $this->buffer->readDouble(58); |
||
63 | $this->buffer->read(11, 66); |
||
64 | $this->buffer->read(12, 77); |
||
65 | } |
||
67 |