//===----------------------------------------------------------------------===// // // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. // See https://llvm.org/LICENSE.txt for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // //===----------------------------------------------------------------------===// // // reverse_iterator // template // requires HasEqualTo // bool operator==(const reverse_iterator& x, const reverse_iterator& y); // constexpr since C++17 #include #include #include "test_macros.h" #include "test_iterators.h" template TEST_CONSTEXPR_CXX17 void test(It l, It r, bool x) { const std::reverse_iterator r1(l); const std::reverse_iterator r2(r); assert((r1 == r2) == x); } TEST_CONSTEXPR_CXX17 bool tests() { const char* s = "1234567890"; test(bidirectional_iterator(s), bidirectional_iterator(s), true); test(bidirectional_iterator(s), bidirectional_iterator(s+1), false); test(random_access_iterator(s), random_access_iterator(s), true); test(random_access_iterator(s), random_access_iterator(s+1), false); test(s, s, true); test(s, s+1, false); return true; } int main(int, char**) { tests(); #if TEST_STD_VER > 14 static_assert(tests(), ""); #endif return 0; }