Retrieves the array config. */
| 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 |
no test coverage detected