| 73 | } |
| 74 | |
| 75 | void read(folly::Range<char**> rows) { |
| 76 | auto stream = HashStringAllocator::prepareRead(firstBlock); |
| 77 | |
| 78 | for (auto i = 0; i < size; ++i) { |
| 79 | rows[i] = reinterpret_cast<char*>(stream->read<uintptr_t>()); |
| 80 | } |
| 81 | } |
| 82 | }; |
| 83 | } // namespace |
| 84 |
no test coverage detected