MCPcopy Create free account
hub / github.com/TileDB-Inc/TileDB / byte_size

Method byte_size

tiledb/sm/subarray/subarray_tile_overlap.cc:162–173  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

160}
161
162uint64_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

Callers 2

Calls

no outgoing calls

Tested by

no test coverage detected