Experimental
In <boost/outcome/experimental>
, there ships an Outcome-based simulation of
the proposed P1095 Zero overhead deterministic failure
specific implementation of P0709 Zero overhead exceptions: Throwing values, aka “Herbceptions”. This library-only implementation lets you use a close simulacrum
of potential future C++ lightweight exceptions today in any C++ 14 compiler
which Outcome supports.
P1095’s support library has a reference implementation at https://ned14.github.io/status-code/.
You will find terse documentation there, and an API reference.
This library is wholly incorporated into Outcome in the <boost/outcome/experimental/status-code>
directory, with bindings into Outcome provided in the following headers:
<boost/outcome/experimental/status_result.hpp>
<boost/outcome/experimental/status_outcome.hpp>
These headers import the entire contents of the BOOST_OUTCOME_SYSTEM_ERROR2_NAMESPACE
namespace into the BOOST_OUTCOME_V2_NAMESPACE::experimental
namespace. You
can thus address everything in BOOST_OUTCOME_SYSTEM_ERROR2_NAMESPACE
via
BOOST_OUTCOME_V2_NAMESPACE::experimental
.
As P1095 also proposes C language support for lightweight C++ exceptions,
experimental Outcome also has a macro-based C interface that enables C
code to work with the C-compatible subset of status_result<T, E>
:
<boost/outcome/experimental/result.h>