//===----------------------------------------------------------------------===// // // The LLVM Compiler Infrastructure // // This file is dual licensed under the MIT and the University of Illinois Open // Source Licenses. See LICENSE.TXT for details. // //===----------------------------------------------------------------------===// // // reverse_iterator // template // requires HasGreater // bool // operator<(const reverse_iterator& x, const reverse_iterator& y); #include #include #include "test_iterators.h" template void test(It l, It r, bool x) { const std::reverse_iterator r1(l); const std::reverse_iterator r2(r); assert((r1 < r2) == x); } int main() { 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); }