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

Method CurrentDomain

tiledb/sm/cpp_api/current_domain.h:70–75  ·  view source on GitHub ↗

* Creates a TileDB current_domain object. * * @param ctx TileDB context * @param type The TileDB currentDomain type */

Source from the content-addressed store, hash-verified

68 * @param type The TileDB currentDomain type
69 */
70 explicit CurrentDomain(const Context& ctx)
71 : ctx_(ctx) {
72 tiledb_current_domain_t* cd;
73 ctx.handle_error(tiledb_current_domain_create(ctx.ptr().get(), &cd));
74 current_domain_ = std::shared_ptr<tiledb_current_domain_t>(cd, deleter_);
75 }
76
77 /**
78 * Creates a TileDB current_domain object.

Callers

nothing calls this directly

Calls 4

handle_errorMethod · 0.80
getMethod · 0.45
ptrMethod · 0.45

Tested by

no test coverage detected