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

Method is_resolved

src/fl/task/promise.h:146–149  ·  view source on GitHub ↗

Check if Promise is resolved (completed successfully)

Source from the content-addressed store, hash-verified

144
145 /// Check if Promise is resolved (completed successfully)
146 bool is_resolved() const FL_NOEXCEPT {
147 if (!valid()) return false;
148 return mImpl->is_resolved();
149 }
150
151 /// Check if Promise is rejected (completed with error)
152 bool is_rejected() const FL_NOEXCEPT {

Callers 4

await_top_levelFunction · 0.45
awaitFunction · 0.45
FL_TEST_FILEFunction · 0.45
FL_TEST_FILEFunction · 0.45

Calls

no outgoing calls

Tested by

no test coverage detected