MCPcopy Create free account
hub / github.com/FastLED/FastLED / is_completed

Method is_completed

src/fl/task/promise.h:140–143  ·  view source on GitHub ↗

Check if Promise is completed (resolved or rejected)

Source from the content-addressed store, hash-verified

138
139 /// Check if Promise is completed (resolved or rejected)
140 bool is_completed() const FL_NOEXCEPT {
141 if (!valid()) return false;
142 return mImpl->is_completed();
143 }
144
145 /// Check if Promise is resolved (completed successfully)
146 bool is_resolved() const FL_NOEXCEPT {

Callers 7

await_top_levelFunction · 0.45
complete_successMethod · 0.45
complete_errorMethod · 0.45
execute_fetch_requestFunction · 0.45
FL_TEST_FILEFunction · 0.45
FL_TEST_FILEFunction · 0.45

Calls

no outgoing calls

Tested by

no test coverage detected