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

Method dimension_datum_at

tiledb/sm/query/query_buffer.h:325–332  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

323 }
324
325 tdb::DynamicTypedDatumView dimension_datum_at(
326 const Dimension& dim, size_t index) const {
327 auto type = dim.type();
328 return dim.var_size() ?
329 tdb::DynamicTypedDatumView{varying_size_datum_at(index), type} :
330 tdb::DynamicTypedDatumView{
331 fixed_size_datum_at(index, dim.coord_size()), type};
332 }
333};
334
335} // namespace sm

Callers 4

map_to_uint64Function · 0.80
dimension_datum_viewMethod · 0.80
initializeMethod · 0.80
coords_to_strMethod · 0.80

Calls 3

typeMethod · 0.45
var_sizeMethod · 0.45
coord_sizeMethod · 0.45

Tested by

no test coverage detected