#include "tensorstore/util/result.h"
template <typename... Args>
tensorstore::Result<T>::Result(std::in_place_tArgs&&... args);
template <typename U, typename... Args>
tensorstore::Result<T>::Result(std::in_place_t,
                               
std::initializer_list<U> il,
                               
Args&&... args);

Directly constructs the contained value from the specified arguments.