Returns the array URI. */
| 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 { |
no test coverage detected