| 858 | |
| 859 | template <typename T> |
| 860 | inline bool TPromise<T>::TrySetException(std::exception_ptr e) { |
| 861 | EnsureInitialized(); |
| 862 | return State->TrySetException(std::move(e)); |
| 863 | } |
| 864 | |
| 865 | template <typename T> |
| 866 | inline TFuture<T> TPromise<T>::GetFuture() const { |
no test coverage detected