Section: 22.5.3.2 [optional.ctor], 22.5.3.4 [optional.assign] Status: Resolved Submitter: Casey Carter Opened: 2016-07-22 Last modified: 2017-06-15
Priority: 0
View all other issues in [optional.ctor].
View all issues with Resolved status.
Discussion:
To use optional<T> as if it were a T in generic contexts, optional<T>'s "generic"
operations must behave as do those of T under overload resolution. At minimum, optional's constructors
and assignment operators should not participate in overload resolution with argument types that cannot be used to
construct/assign the contained T so that is_constructible_v<optional<T>, Args...>
(respectively is_assignable_v<optional<T>&, RHS>) is equivalent to
is_constructible_v<T, Args...> (respectively is_assignable_v<T&, RHS>).
In passing, note that the Requires element for optional's in-place initializer_list constructor
unnecessarily duplicates its Remarks element; it should be removed.
It should also be noted that the resolution of LWG 2451 adds constructors to optional with
appropriate constraints, but does not constrain the additional assignment operators. If LWG chooses to apply the
resolution of 2451 to the WP, the Requires elements of the additional assignment operators should also be converted
to constraints as the wording herein does for the assignment operators in N4606.
[2016-07 Chicago]
Monday: P0 - tentatively ready
[2016-11-28 Post-Issaquah]
Resolved by the adoption of 2756
Proposed resolution:
This wording is relative to N4606.
Remove [optional.object.ctor] p3, and add a new paragraph after p6:
optional(const optional<T>& rhs);[…] -?- Remarks: The function shall not participate in overload resolution unless
-3- Requires:is_copy_constructible_v<T>istrue.is_copy_constructible_v<T>istrue.
Remove [optional.object.ctor] p7, and change p11 to:
optional(optional<T>&& rhs) noexcept(see below);[…] -11- Remarks: The expression inside
-7- Requires:is_move_constructible_v<T>istrue.noexceptis equivalent tois_nothrow_move_constructible_v<T>. The function shall not participate in overload resolution unlessis_move_constructible_v<T>istrue.
Remove [optional.object.ctor] p12, and change p16 to:
constexpr optional(const T& v);[…] -16- Remarks: If
-12- Requires:is_copy_constructible_v<T>istrue.T's selected constructor is aconstexprconstructor, this constructor shall be aconstexprconstructor. The function shall not participate in overload resolution unlessis_copy_constructible_v<T>istrue.
Remove [optional.object.ctor] p17, and change p21 to:
constexpr optional(T&& v);[…] -21- Remarks: If
-17- Requires:is_move_constructible_v<T>istrue.T's selected constructor is aconstexprconstructor, this constructor shall be aconstexprconstructor. The function shall not participate in overload resolution unlessis_move_constructible_v<T>istrue.
Remove [optional.object.ctor] p22, and change p26 to:
template <class... Args> constexpr explicit optional(in_place_t, Args&&... args);[…] -26- Remarks: If
-22- Requires:is_constructible_v<T, Args&&...>istrue.T's constructor selected for the initialization is aconstexprconstructor, this constructor shall be aconstexprconstructor. The function shall not participate in overload resolution unlessis_constructible_v<T, Args...>istrue.
Remove [optional.object.ctor] p27.
template <class U, class... Args> constexpr explicit optional(in_place_t, initializer_list<U> il, Args&&... args);[…]
-27- Requires:is_constructible_v<T, initializer_list<U>&, Args&&...>istrue.
Remove [optional.object.assign] p4, and change p8 to:
optional<T>& operator=(const optional<T>& rhs);[…] -8- Remarks: If any exception is thrown, the result of the expression
-4- Requires:is_copy_constructible_v<T>istrueandis_copy_assignable_v<T>istrue.bool(*this)remains unchanged. If an exception is thrown during the call toT's copy constructor, no effect. If an exception is thrown during the call toT's copy assignment, the state of its contained value is as defined by the exception safety guarantee ofT's copy assignment. The function shall not participate in overload resolution unlessis_copy_constructible_v<T> && is_copy_assignable_v<T>istrue.
Remove [optional.object.assign] p9, and add a new paragraph after p14:
optional<T>& operator=(optional<T>&& rhs) noexcept(see below);[…] -14- Remarks: […] If an exception is thrown during the call to
-9- Requires:is_move_constructible_v<T>istrueandis_move_assignable_v<T>istrue.T's move assignment, the state of*valand*rhs.valis determined by the exception safety guarantee ofT's move assignment. The function shall not participate in overload resolution unlessis_move_constructible_v<T> && is_move_assignable_v<T>istrue.
Remove [optional.object.assign] p15, and change p19 to (yes, this wording is odd - the intent is that it will "do the right thing" after incorporation of LWG 2451):
template <class U> optional<T>& operator=(U&& v);[…] -19- Remarks: If any exception is thrown, the result of the expression
-15- Requires:is_constructible_v<T, U>istrueandis_assignable_v<T&, U>istrue.bool(*this)remains unchanged. If an exception is thrown during the call toT's constructor, the state ofvis determined by the exception safety guarantee ofT's constructor. If an exception is thrown during the call toT's assignment, the state of*valandvis determined by the exception safety guarantee ofT's assignment. The function shall not participate in overload resolution unlessis_same_v<decay_t<U>, T> && is_constructible_v<T, U> && is_assignable_v<T&, U>istrue.