BOOST_OUTCOME_TRYX(expr)
Evaluate an expression which results in a type matching the ValueOrError<T, E> concept, emitting the T if successful, immediately returning try_operation_return_as(expr) from the calling function if unsuccessful.
Availability: GCC and clang only. Use #ifdef BOOST_OUTCOME_TRYX to determine if available.
Overridable: Not overridable.
Definition: See BOOST_OUTCOME_TRYV(expr) for most of the mechanics.
This macro makes use of a proprietary extension in GCC and clang to emit the T from a successful expression. You can thus use BOOST_OUTCOME_TRYX(expr) directly in expressions e.g. auto x = y + BOOST_OUTCOME_TRYX(foo(z));.
Be aware there are compiler quirks in preserving the rvalue/lvalue/etc-ness of emitted T’s, specifically copy or move constructors may be called unexpectedly and/or copy elision not work as expected. If these prove to be problematic, use BOOST_OUTCOME_TRY(var, expr) instead.
Header: <boost/outcome/try.hpp>



