//===----------------------------------------------------------------------===// // // 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 // template I2, sized_sentinel_for S2> // requires sized_sentinel_for // friend iter_difference_t operator-( // const common_iterator& x, const common_iterator& y); #include #include #include "test_macros.h" #include "types.h" void test() { int buffer[8] = {1, 2, 3, 4, 5, 6, 7, 8}; { auto iter1 = random_access_iterator(buffer); auto commonIter1 = std::common_iterator>(iter1); auto commonSent1 = std::common_iterator>(sized_sentinel_type{buffer + 8}); assert(commonIter1 - commonSent1 == -8); assert(commonSent1 - commonIter1 == 8); assert(commonIter1 - commonIter1 == 0); assert(commonSent1 - commonSent1 == 0); } { auto iter1 = simple_iterator(buffer); auto iter2 = comparable_iterator(buffer); auto commonIter1 = std::common_iterator>(iter1); auto commonIter2 = std::common_iterator>(iter2); assert(commonIter1 - commonIter2 == 0); } { auto iter1 = random_access_iterator(buffer); const auto commonIter1 = std::common_iterator>(iter1); const auto commonSent1 = std::common_iterator>(sized_sentinel_type{buffer + 8}); assert(commonIter1 - commonSent1 == -8); assert(commonSent1 - commonIter1 == 8); assert(commonIter1 - commonIter1 == 0); assert(commonSent1 - commonSent1 == 0); } { auto iter1 = simple_iterator(buffer); auto iter2 = comparable_iterator(buffer); const auto commonIter1 = std::common_iterator>(iter1); const auto commonIter2 = std::common_iterator>(iter2); assert(commonIter1 - commonIter2 == 0); } } int main(int, char**) { test(); return 0; }