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

Method uri

tiledb/sm/cpp_api/array.h:315–320  ·  view source on GitHub ↗

Returns the array URI. */

Source from the content-addressed store, hash-verified

313
314 /** Returns the array URI. */
315 std::string uri() const {
316 auto& ctx = ctx_.get();
317 const char* uri = nullptr;
318 ctx.handle_error(tiledb_array_get_uri(ctx.ptr().get(), array_.get(), &uri));
319 return std::string(uri);
320 }
321
322 /** Get the Context for the array. */
323 const Context& context() const {

Calls 4

tiledb_array_get_uriFunction · 0.85
handle_errorMethod · 0.80
getMethod · 0.45
ptrMethod · 0.45

Tested by

no test coverage detected