//===----------------------------------------------------------------------===// // // 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. // //===----------------------------------------------------------------------===// // // move_iterator // template // requires HasMinus // auto // operator-(const move_iterator& x, const move_iterator& y) // -> decltype(x.base() - y.base()); #include #include #include "test_iterators.h" template void test(It l, It r, typename std::iterator_traits::difference_type x) { const std::move_iterator r1(l); const std::move_iterator r2(r); assert(r1 - r2 == x); } int main() { char s[] = "1234567890"; test(random_access_iterator(s+5), random_access_iterator(s), 5); test(s+5, s, 5); }