1 //===----------------------------------------------------------------------===//
3 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4 // See https://llvm.org/LICENSE.txt for license information.
5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
7 //===----------------------------------------------------------------------===//
9 #ifndef _LIBCPP___UTILITY_SWAP_H
10 #define _LIBCPP___UTILITY_SWAP_H
13 #include <__type_traits/is_move_assignable.h>
14 #include <__type_traits/is_move_constructible.h>
15 #include <__type_traits/is_nothrow_move_assignable.h>
16 #include <__type_traits/is_nothrow_move_constructible.h>
17 #include <__type_traits/is_swappable.h>
18 #include <__utility/declval.h>
19 #include <__utility/move.h>
22 #if !defined(_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER)
23 # pragma GCC system_header
27 #include <__undef_macros>
29 _LIBCPP_BEGIN_NAMESPACE_STD
31 #ifndef _LIBCPP_CXX03_LANG
33 using __swap_result_t
= __enable_if_t
<is_move_constructible
<_Tp
>::value
&& is_move_assignable
<_Tp
>::value
>;
36 using __swap_result_t
= void;
40 inline _LIBCPP_HIDE_FROM_ABI __swap_result_t
<_Tp
> _LIBCPP_CONSTEXPR_SINCE_CXX20
swap(_Tp
& __x
, _Tp
& __y
)
41 _NOEXCEPT_(is_nothrow_move_constructible
<_Tp
>::value
&& is_nothrow_move_assignable
<_Tp
>::value
) {
42 _Tp
__t(std::move(__x
));
47 template <class _Tp
, size_t _Np
, __enable_if_t
<__is_swappable
<_Tp
>::value
, int> >
48 inline _LIBCPP_HIDE_FROM_ABI _LIBCPP_CONSTEXPR_SINCE_CXX20
void swap(_Tp (&__a
)[_Np
], _Tp (&__b
)[_Np
])
49 _NOEXCEPT_(__is_nothrow_swappable
<_Tp
>::value
) {
50 for (size_t __i
= 0; __i
!= _Np
; ++__i
) {
51 swap(__a
[__i
], __b
[__i
]);
55 _LIBCPP_END_NAMESPACE_STD
59 #endif // _LIBCPP___UTILITY_SWAP_H