| 132 | /// This generic function delegates to the IntoStatus type trait. |
| 133 | template <typename T> |
| 134 | constexpr decltype(auto) ToStatus(T&& t) { |
| 135 | return IntoStatus<std::decay_t<T>>::ToStatus(std::forward<T>(t)); |
| 136 | } |
| 137 | |
| 138 | /// \brief Status outcome object (success or error) |
| 139 | /// |
no outgoing calls