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

Method config

tiledb/sm/cpp_api/array.h:554–560  ·  view source on GitHub ↗

Retrieves the array config. */

Source from the content-addressed store, hash-verified

552
553 /** Retrieves the array config. */
554 Config config() const {
555 auto& ctx = ctx_.get();
556 tiledb_config_t* config = nullptr;
557 ctx.handle_error(
558 tiledb_array_get_config(ctx.ptr().get(), array_.get(), &config));
559 return Config(&config);
560 }
561
562 /**
563 * Closes the array. The destructor calls this automatically

Callers 2

ArrayMethod · 0.45
openMethod · 0.45

Calls 5

tiledb_array_get_configFunction · 0.85
handle_errorMethod · 0.80
ConfigClass · 0.70
getMethod · 0.45
ptrMethod · 0.45

Tested by

no test coverage detected