1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102
|
// { dg-options "-std=gnu++2a" }
// { dg-do run { target c++2a } }
// Copyright (C) 2020-2022 Free Software Foundation, Inc.
//
// This file is part of the GNU ISO C++ Library. This library is free
// software; you can redistribute it and/or modify it under the
// terms of the GNU General Public License as published by the
// Free Software Foundation; either version 3, or (at your option)
// any later version.
// This library is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU General Public License for more details.
// You should have received a copy of the GNU General Public License along
// with this library; see the file COPYING3. If not see
// <http://www.gnu.org/licenses/>.
// Tuple
#include <tuple>
#include <testsuite_hooks.h>
using namespace std;
template<typename T>
bool self_consistent(const T& x)
{
return std::is_eq(x <=> x) && x == x && !(x != x) && x <= x && !(x < x);
}
void
test01()
{
int i=0;
int j=0;
int k=2;
tuple<int, int, int> a(0, 0, 0);
tuple<int, int, int> b(0, 0, 1);
tuple<int& , int& , int&> c(i,j,k);
tuple<const int&, const int&, const int&> d(c);
VERIFY( self_consistent(a) );
VERIFY( self_consistent(b) );
VERIFY( self_consistent(c) );
VERIFY( self_consistent(d) );
VERIFY( !(a > a) && !(b > b) );
VERIFY( a >= a && b >= b );
VERIFY( a < b && !(b < a) && a <= b && !(b <= a) );
VERIFY( b > a && !(a > b) && b >= a && !(a >= b) );
VERIFY( std::is_lt(a <=> b) );
VERIFY( std::is_gt(b <=> a) );
VERIFY( std::is_gt(c <=> a) );
VERIFY( std::is_eq(c <=> d) );
static_assert( std::is_same_v<decltype(a <=> d), std::strong_ordering> );
}
template<typename T, typename U, typename C>
constexpr bool
check_compare(T&& t, U&& u, C c)
{
using R = std::compare_three_way_result_t<T, U>;
static_assert( std::same_as<C, R> );
return (t <=> u) == c;
}
void
test02()
{
using std::strong_ordering;
using std::weak_ordering;
using std::partial_ordering;
using T0 = std::tuple<>;
static_assert( check_compare(T0(), T0(), strong_ordering::equal) );
using Ti = std::tuple<int>;
using Tu = std::tuple<unsigned>;
static_assert( check_compare(Ti(1), Tu(1u), weak_ordering::equivalent) );
static_assert( check_compare(Ti(1), Tu(2u), weak_ordering::less) );
static_assert( check_compare(Ti(-1), Tu(1u), weak_ordering::greater) );
using Tii = std::tuple<int, int>;
using Tlu = std::tuple<long, unsigned>;
static_assert( check_compare(Tii(1, 2), Tlu(2l, 1u), weak_ordering::less) );
using Tid = std::tuple<int, double>;
static_assert( check_compare(Tii(3, 4), Tid(2, 0.9), partial_ordering::greater) );
static_assert( !std::three_way_comparable_with<T0, Ti> );
static_assert( !std::three_way_comparable_with<Ti, Tii> );
static_assert( !std::three_way_comparable_with<Ti, Tid> );
}
int main()
{
test01();
test02();
}
|