Checks if the array is open. */
| 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 { |
no test coverage detected