#include "tensorstore/util/future.h"
std::add_lvalue_reference_t<result_type>
tensorstore::Promise<T>::raw_result() const;

Returns a reference to the result value stored in the shared state.

No locking/synchronization is used. The caller must ensure that concurrent access to the referenced value are safe, including any concurrent accesses that may result from calls to SetResult or SetResultWith.

Dchecks:

!null()