blob: 115d95e1485cdcf44f3e157a99cd94875ae959a5 [file] [log] [blame]
//===----------------------------------------------------------------------===//
//
// 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
//
//===----------------------------------------------------------------------===//
// <iterator>
// __unconstrained_reverse_iterator
// requires RandomAccessIterator<Iter>
// __unconstrained_reverse_iterator& operator+=(difference_type n); // constexpr in C++17
#include <iterator>
#include <cassert>
#include "test_macros.h"
#include "test_iterators.h"
template <class It>
TEST_CONSTEXPR_CXX17 void test(It i, typename std::iterator_traits<It>::difference_type n, It x) {
std::__unconstrained_reverse_iterator<It> r(i);
std::__unconstrained_reverse_iterator<It>& rr = r += n;
assert(r.base() == x);
assert(&rr == &r);
}
TEST_CONSTEXPR_CXX17 bool tests() {
char const* s = "1234567890";
test(random_access_iterator<const char*>(s+5), 5, random_access_iterator<const char*>(s));
test(s+5, 5, s);
return true;
}
int main(int, char**) {
tests();
#if TEST_STD_VER > 14
static_assert(tests(), "");
#endif
return 0;
}