Complete the Promise with a result (used by networking library)
| 181 | |
| 182 | /// Complete the Promise with a result (used by networking library) |
| 183 | bool complete_with_value(const T& value) FL_NOEXCEPT { |
| 184 | if (!valid()) return false; |
| 185 | return mImpl->resolve(value); |
| 186 | } |
| 187 | |
| 188 | bool complete_with_value(T&& value) FL_NOEXCEPT { |
| 189 | if (!valid()) return false; |
no test coverage detected