Returns the cell order. */
| 257 | |
| 258 | /** Returns the cell order. */ |
| 259 | tiledb_layout_t cell_order() const { |
| 260 | auto& ctx = ctx_.get(); |
| 261 | tiledb_layout_t layout; |
| 262 | ctx.handle_error(tiledb_array_schema_get_cell_order( |
| 263 | ctx.ptr().get(), schema_.get(), &layout)); |
| 264 | return layout; |
| 265 | } |
| 266 | |
| 267 | /** |
| 268 | * Sets the cell order. |
nothing calls this directly
no test coverage detected