Returns the tile capacity. */
| 168 | |
| 169 | /** Returns the tile capacity. */ |
| 170 | uint64_t capacity() const { |
| 171 | auto& ctx = ctx_.get(); |
| 172 | uint64_t capacity; |
| 173 | ctx.handle_error(tiledb_array_schema_get_capacity( |
| 174 | ctx.ptr().get(), schema_.get(), &capacity)); |
| 175 | return capacity; |
| 176 | } |
| 177 | |
| 178 | /** |
| 179 | * Sets the tile capacity. |
nothing calls this directly
no test coverage detected