//===----------------------------------------------------------------------===// // // 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 // //===----------------------------------------------------------------------===// // UNSUPPORTED: c++03, c++11, c++14, c++17 // UNSUPPORTED: libcpp-no-concepts // constexpr counted_iterator& operator-=(iter_difference_t n) // requires random_access_iterator; #include #include "test_macros.h" #include "test_iterators.h" template concept MinusEqEnabled = requires(Iter& iter) { iter -= 1; }; constexpr bool test() { int buffer[8] = {1, 2, 3, 4, 5, 6, 7, 8}; { using Counted = std::counted_iterator>; Counted iter(random_access_iterator{buffer + 2}, 6); assert((iter -= 2) == Counted(random_access_iterator{buffer}, 8)); assert((iter -= 0) == Counted(random_access_iterator{buffer}, 8)); assert(iter.count() == 8); ASSERT_SAME_TYPE(decltype(iter -= 2), Counted&); } { using Counted = std::counted_iterator>; Counted iter(contiguous_iterator{buffer + 2}, 6); assert((iter -= 2) == Counted(contiguous_iterator{buffer}, 8)); assert((iter -= 0) == Counted(contiguous_iterator{buffer}, 8)); assert(iter.count() == 8); ASSERT_SAME_TYPE(decltype(iter -= 2), Counted&); } { static_assert( MinusEqEnabled< std::counted_iterator>>); static_assert(!MinusEqEnabled>>); } return true; } int main(int, char**) { test(); static_assert(test()); return 0; }