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