| 113 | } // namespace |
| 114 | |
| 115 | ChunkResolver::ChunkResolver(const ArrayVector& chunks) noexcept |
| 116 | : offsets_(MakeChunksOffsets(std::span(chunks))), cached_chunk_(0) {} |
| 117 | |
| 118 | ChunkResolver::ChunkResolver(std::span<const Array* const> chunks) noexcept |
| 119 | : offsets_(MakeChunksOffsets(chunks)), cached_chunk_(0) {} |
nothing calls this directly
no test coverage detected