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

Method domain

tiledb/sm/cpp_api/array_schema.h:403–409  ·  view source on GitHub ↗

* Returns a copy of the schema's array Domain. To change the domain, * use `set_domain()`. * * @return Copy of the array Domain */

Source from the content-addressed store, hash-verified

401 * @return Copy of the array Domain
402 */
403 Domain domain() const {
404 auto& ctx = ctx_.get();
405 tiledb_domain_t* domain;
406 ctx.handle_error(tiledb_array_schema_get_domain(
407 ctx.ptr().get(), schema_.get(), &domain));
408 return Domain(ctx, domain);
409 }
410
411 /**
412 * Sets the array domain.

Callers

nothing calls this directly

Calls 5

handle_errorMethod · 0.80
DomainClass · 0.70
getMethod · 0.45
ptrMethod · 0.45

Tested by

no test coverage detected