Check if Promise is completed (resolved or rejected)
| 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 { |
no outgoing calls
no test coverage detected