MCPcopy Create free account
hub / github.com/apache/arrow / AlreadyExists

Function AlreadyExists

cpp/src/arrow/status.h:283–285  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

281
282 template <typename... Args>
283 static Status AlreadyExists(Args&&... args) {
284 return Status::FromArgs(StatusCode::AlreadyExists, std::forward<Args>(args)...);
285 }
286
287 /// Return true iff the status indicates success.
288 constexpr bool ok() const { return (state_ == NULLPTR); }

Callers 5

ToStatusMethod · 0.85
TESTFunction · 0.85
FromAbslStatusFunction · 0.85
ToArrowStatusFunction · 0.85
RunWithCapturedRFunction · 0.85

Calls 1

FromArgsFunction · 0.85

Tested by 1

TESTFunction · 0.68