sumty
0.1.0
Better sum types for C++
|
Public Member Functions | |
bad_result_access (E error) | |
bad_result_access (const bad_result_access &)=default | |
bad_result_access (bad_result_access &&) noexcept(//NOLINTNEXTLINE(performance-noexcept-move-constructor) std::is_nothrow_move_constructible_v< E >)=default | |
bad_result_access & | operator= (const bad_result_access &)=default |
bad_result_access & | operator= (bad_result_access &&) noexcept(//NOLINTNEXTLINE(performance-noexcept-move-constructor) std::is_nothrow_move_assignable_v< E >)=default |
E & | error () &noexcept |
const E & | error () const &noexcept |
E && | error () && |
const E && | error () const && |
const char * | what () const noexcept override |