| 160 | } |
| 161 | |
| 162 | uint64_t SubarrayTileOverlap::byte_size() const { |
| 163 | uint64_t size = 0; |
| 164 | if (tile_overlap_idx_) { |
| 165 | for (const auto& tile_overlaps : *tile_overlap_idx_) { |
| 166 | for (const auto& tile_overlap : tile_overlaps) { |
| 167 | size += tile_overlap.byte_size(); |
| 168 | } |
| 169 | } |
| 170 | } |
| 171 | |
| 172 | return size; |
| 173 | } |
| 174 | |
| 175 | } // namespace sm |
| 176 | } // namespace tiledb |
no outgoing calls
no test coverage detected