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

Method ndrectangle

tiledb/sm/cpp_api/current_domain.h:140–146  ·  view source on GitHub ↗

* Get the N-dimensional rectangle associated with the current domain object, * error if the current domain is empty or a different representation is set. * * @return The N-dimensional rectangle of the current domain */

Source from the content-addressed store, hash-verified

138 * @return The N-dimensional rectangle of the current domain
139 */
140 NDRectangle ndrectangle() const {
141 tiledb_ndrectangle_t* nd;
142 auto& ctx = ctx_.get();
143 ctx.handle_error(tiledb_current_domain_get_ndrectangle(
144 ctx.ptr().get(), current_domain_.get(), &nd));
145 return NDRectangle(ctx, nd);
146 }
147
148 /**
149 * Check if the current_domain is empty

Callers

nothing calls this directly

Calls 5

handle_errorMethod · 0.80
NDRectangleClass · 0.70
getMethod · 0.45
ptrMethod · 0.45

Tested by

no test coverage detected