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

Method dim_num

tiledb/sm/cpp_api/ndrectangle.h:309–317  ·  view source on GitHub ↗

* Get the number of dimensions associated with the NDRectangle. * * @return The number of dimensions. */

Source from the content-addressed store, hash-verified

307 * @return The number of dimensions.
308 */
309 uint32_t dim_num() {
310 auto& ctx = ctx_.get();
311
312 uint32_t ndim;
313 ctx.handle_error(
314 tiledb_ndrectangle_get_dim_num(ctx.ptr().get(), ndrect_.get(), &ndim));
315
316 return ndim;
317 }
318
319 /** Returns the context that the ndrectangle belongs to. */
320 const Context& context() const {

Callers 2

resize_buffersMethod · 0.45
set_query_buffersMethod · 0.45

Calls 4

handle_errorMethod · 0.80
getMethod · 0.45
ptrMethod · 0.45

Tested by

no test coverage detected