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

Method is_open

tiledb/sm/cpp_api/array.h:306–312  ·  view source on GitHub ↗

Checks if the array is open. */

Source from the content-addressed store, hash-verified

304
305 /** Checks if the array is open. */
306 bool is_open() const {
307 auto& ctx = ctx_.get();
308 int open = 0;
309 ctx.handle_error(
310 tiledb_array_is_open(ctx.ptr().get(), array_.get(), &open));
311 return bool(open);
312 }
313
314 /** Returns the array URI. */
315 std::string uri() const {

Callers 4

tiledb_query_allocFunction · 0.45
load_from_fileMethod · 0.45
save_to_fileMethod · 0.45

Calls 4

tiledb_array_is_openFunction · 0.85
handle_errorMethod · 0.80
getMethod · 0.45
ptrMethod · 0.45

Tested by

no test coverage detected