* Returns a copy of the schema's array Domain. To change the domain, * use `set_domain()`. * * @return Copy of the array Domain */
| 401 | * @return Copy of the array Domain |
| 402 | */ |
| 403 | Domain domain() const { |
| 404 | auto& ctx = ctx_.get(); |
| 405 | tiledb_domain_t* domain; |
| 406 | ctx.handle_error(tiledb_array_schema_get_domain( |
| 407 | ctx.ptr().get(), schema_.get(), &domain)); |
| 408 | return Domain(ctx, domain); |
| 409 | } |
| 410 | |
| 411 | /** |
| 412 | * Sets the array domain. |
nothing calls this directly
no test coverage detected