diff --git a/README.md b/README.md index bbef2e2..598915f 100644 --- a/README.md +++ b/README.md @@ -273,7 +273,8 @@ You can use the R3 revision of P2505, which lacks `error_or`, and uses `remove_c | < > <= >= | constexpr bool operator ***op***(
 unexpected_type<std::exception_ptr> const & x,
 unexpected_type<std::exception_ptr> const & y ) | | Specialized algorithms |   | | Make unexpected from |   | -|  Error | template<typename E>
[constexpr] auto **make_unexpected**( E && v) ->
 unexpected_type< typename std::decay<E>::type>| +|  Error | template<typename E>
[constexpr] auto **make_unexpected**(E && v) ->
 unexpected_type< typename std::decay<E>::type>| +|  Arguments (in-place) | template<typename E, typename... Args>
[constexpr] auto **make_unexpected**(in_place_t, Args &&... args) ->
 unexpected_type< typename std::decay<E>::type>| | Make unexpected from | nsel_P0323R <= 3 | |  Current exception | [constexpr] auto **make_unexpected_from_current_exception**() ->
 unexpected_type< std::exception_ptr>| @@ -398,6 +399,7 @@ unexpected_type: Allows to modify its value unexpected_type: Provides relational operators unexpected_type: Provides relational operators, std::exception_ptr specialization make_unexpected(): Allows to create an unexpected_type from an E +make_unexpected(): Allows to in-place create an unexpected_type from an E unexpected: C++17 and later provide unexpected_type as unexpected bad_expected_access: Disallows default construction bad_expected_access: Allows construction from error_type