MCPcopy Create free account
hub / github.com/TileDB-Inc/TileDB / is_empty

Method is_empty

tiledb/sm/cpp_api/current_domain.h:153–159  ·  view source on GitHub ↗

* Check if the current_domain is empty * * @return True if the currentDomain is empty */

Source from the content-addressed store, hash-verified

151 * @return True if the currentDomain is empty
152 */
153 bool is_empty() const {
154 uint32_t ret;
155 auto& ctx = ctx_.get();
156 ctx.handle_error(tiledb_current_domain_get_is_empty(
157 ctx.ptr().get(), current_domain_.get(), &ret));
158 return static_cast<bool>(ret);
159 }
160
161 /** Returns the context that the current domain belongs to. */
162 const Context& context() const {

Callers 1

consolidate_internalMethod · 0.45

Calls 4

handle_errorMethod · 0.80
getMethod · 0.45
ptrMethod · 0.45

Tested by

no test coverage detected