// Copyright (C) 2020-2023 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 // . // { dg-options "-std=gnu++2a" } // { dg-do run { target c++2a } } // { dg-require-effective-target hosted } #include #include #include #include using __gnu_test::test_container; using __gnu_test::test_range; using __gnu_test::input_iterator_wrapper; using __gnu_test::forward_iterator_wrapper; using __gnu_test::bidirectional_iterator_wrapper; namespace ranges = std::ranges; struct X { int i; }; void test01() { int x[] = { {2}, {2}, {6}, {8}, {10}, {11}, {11} }; int y[] = { {2}, {2}, {6}, {8}, {10}, {11}, {11} }; X z[] = { {2}, {6}, {8}, {10}, {2}, {2} }; int w[] = { {1}, {1}, {1}, {1}, {1} }; VERIFY( ranges::equal(w, w+4, w+1, w+5) ); VERIFY( ranges::equal(w, w+5, w, w+5, ranges::greater{}, [] (int a) { return a+1; }) ); test_container cx(x), cy(y); test_container cz(z); VERIFY( ranges::equal(cx, cy) ); VERIFY( !ranges::equal(cx, cy, {}, [] (int a) { return a+1; }) ); VERIFY( !ranges::equal(cx, cz, {}, {}, &X::i) ); test_range rx(x), ry(y); test_range rz(z); VERIFY( ranges::equal(rx, ry) ); rx.bounds.first = x; ry.bounds.first = y; VERIFY( !ranges::equal(rx, ry, {}, {}, [] (int a) { return a+1; }) ); rx.bounds.first = x; rz.bounds.first = z; VERIFY( !ranges::equal(rx, rz, {}, {}, &X::i) ); } void test02() { static constexpr X x[] = { {2}, {2}, {6}, {8}, {10}, {11} }; static constexpr X y[] = { {2}, {6}, {8}, {10}, {11}, {2} }; static constexpr int z[] = { {2}, {6}, {8}, {10}, {2}, {2} }; static constexpr int w[] = { {2}, {6}, {8}, {10}, {2}, {2} }; static_assert(ranges::equal(z, w)); static_assert(!ranges::equal(z, z+5, w+1, w+6)); static_assert(!ranges::equal(z, z, {}, {}, [] (int a) { return a+1; })); static_assert(!ranges::equal(x, y, {}, &X::i, &X::i)); } void test03() { std::vector x = { {2}, {2}, {6}, {8}, {10}, {11} }; std::vector y = { {2}, {2}, {6}, {8}, {10}, {11} }; std::vector z = { {2}, {2}, {6}, {8}, {10}, {12} }; VERIFY( ranges::equal(x, y) ); VERIFY( !ranges::equal(x, z) ); } int main() { test01(); test02(); test03(); }