Conditions | 1 |
Paths | 1 |
Total Lines | 18 |
Code Lines | 16 |
Lines | 0 |
Ratio | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
55 | public function benchConsume(): void |
||
56 | { |
||
57 | $this->buffer->consumeInt8(); |
||
58 | $this->buffer->consumeInt16(); |
||
59 | $this->buffer->consumeInt32(); |
||
60 | $this->buffer->consumeInt64(); |
||
61 | $this->buffer->consumeUint8(); |
||
62 | $this->buffer->consumeUint16(); |
||
63 | $this->buffer->consumeUint32(); |
||
64 | $this->buffer->consumeUint64(); |
||
65 | $this->buffer->consumeFloat(); |
||
66 | $this->buffer->consumeFloat(); |
||
67 | $this->buffer->consumeFloat(); |
||
68 | $this->buffer->consumeDouble(); |
||
69 | $this->buffer->consumeDouble(); |
||
70 | $this->buffer->consumeDouble(); |
||
71 | $this->buffer->consume(11); |
||
72 | $this->buffer->consume(12); |
||
73 | } |
||
75 |