| 177 | |
| 178 | template <typename T> |
| 179 | bool GenericFuture<T>::valid() const |
| 180 | { |
| 181 | return std::visit([](const auto& ctx)->bool { return ctx ? ctx->valid() : false; }, _context); |
| 182 | } |
| 183 | |
| 184 | template <typename T> |
| 185 | void GenericFuture<T>::wait() const |
no outgoing calls
no test coverage detected