| 76 | void Reset() { this->index = 0; } |
| 77 | |
| 78 | inline void Insert(uint16_t packed_data) { |
| 79 | if (!EMPTY) { buffer[index] = packed_data; } |
| 80 | index++; |
| 81 | } |
| 82 | |
| 83 | idx_t index; |
| 84 | uint16_t* buffer; |
nothing calls this directly
no outgoing calls
no test coverage detected