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

Method at

tiledb/sm/subarray/subarray_tile_overlap.h:112–116  ·  view source on GitHub ↗

* Returns a const-pointer to the internal `TileOverlap` instance. The * caller is responsible for ensuring that a `TileOverlap` instance has * been allocated for the input indexes. * * @param fragment_idx The fragment index. * @param range_idx The range index, relative to `range_idx_start()`. * @return The internal `TileOverlap` instance. */

Source from the content-addressed store, hash-verified

110 * @return The internal `TileOverlap` instance.
111 */
112 inline const TileOverlap* at(
113 uint64_t fragment_idx, uint64_t range_idx) const {
114 const uint64_t translated_range_idx = range_idx_start_offset_ + range_idx;
115 return &(*tile_overlap_idx_)[fragment_idx][translated_range_idx];
116 }
117
118 /**
119 * Returns a mutable-pointer to the internal `TileOverlap` instance. The

Callers 6

array_from_capnpFunction · 0.45
subarray.ccFile · 0.45
set_is_defaultMethod · 0.45
tile_overlapMethod · 0.45

Calls

no outgoing calls

Tested by

no test coverage detected