//===----------------------------------------------------------------------===// // // 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. // //===----------------------------------------------------------------------===// // // template // Iter::difference_type // distance(Iter first, Iter last); // // template // Iter::difference_type // distance(Iter first, Iter last); #include #include #include "test_iterators.h" template void test(It first, It last, typename std::iterator_traits::difference_type x) { assert(std::distance(first, last) == x); } int main() { const char* s = "1234567890"; test(input_iterator(s), input_iterator(s+10), 10); test(forward_iterator(s), forward_iterator(s+10), 10); test(bidirectional_iterator(s), bidirectional_iterator(s+10), 10); test(random_access_iterator(s), random_access_iterator(s+10), 10); test(s, s+10, 10); }