| 537 | void SetMembers(const ArrayData& data); |
| 538 | |
| 539 | void SetBuffer(int index, const std::shared_ptr<Buffer>& buffer) { |
| 540 | this->buffers[index].data = const_cast<uint8_t*>(buffer->data()); |
| 541 | this->buffers[index].size = buffer->size(); |
| 542 | this->buffers[index].owner = &buffer; |
| 543 | } |
| 544 | |
| 545 | const ArraySpan& dictionary() const { return child_data[0]; } |
| 546 |
no test coverage detected