Lines Matching defs:__t
50 requires(_Tp&& __t, _Up&& __u) {
51 swap(std::forward<_Tp>(__t), std::forward<_Up>(__u));
62 requires(_Tp (&__t)[_Size], _Up (&__u)[_Size], const __fn& __swap) {
63 __swap(__t[0], __u[0]);
76 _LIBCPP_HIDE_FROM_ABI constexpr void operator()(_Tp&& __t, _Up&& __u) const
77 noexcept(noexcept(swap(std::forward<_Tp>(__t), std::forward<_Up>(__u)))) {
78 swap(std::forward<_Tp>(__t), std::forward<_Up>(__u));
84 _LIBCPP_HIDE_FROM_ABI constexpr void operator()(_Tp (&__t)[_Size], _Up (&__u)[_Size]) const
85 noexcept(noexcept((*this)(*__t, *__u))) {
88 (*this)(__t[__i], __u[__i]);
110 concept swappable_with = common_reference_with<_Tp, _Up> && requires(_Tp&& __t, _Up&& __u) {
111 ranges::swap(std::forward<_Tp>(__t), std::forward<_Tp>(__t));
113 ranges::swap(std::forward<_Tp>(__t), std::forward<_Up>(__u));
114 ranges::swap(std::forward<_Up>(__u), std::forward<_Tp>(__t));