//===----------------------------------------------------------------------===// // // 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 HasGreater // bool operator<(const reverse_iterator& x, const reverse_iterator& y); // constexpr in 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(random_access_iterator(s), random_access_iterator(s), false); test(random_access_iterator(s), random_access_iterator(s+1), false); test(random_access_iterator(s+1), random_access_iterator(s), true); test(s, s, false); test(s, s+1, false); test(s+1, s, true); return true; } int main(int, char**) { tests(); #if TEST_STD_VER > 14 static_assert(tests(), ""); #endif return 0; }