20 General utilities library [utilities]

20.5 Tuples [tuple]

20.5.10 Tuple specialized algorithms [tuple.special]

template<class... Types> constexpr void swap(tuple<Types...>& x, tuple<Types...>& y) noexcept(see below);
Constraints: is_­swappable_­v<T> is true for every type T in Types.
Effects: As if by x.swap(y).
Remarks: The expression inside noexcept is equivalent to: noexcept(x.swap(y))