2010-05-11 21:42:16 +02:00
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
//
|
2010-05-11 23:36:01 +02:00
|
|
|
// The LLVM Compiler Infrastructure
|
2010-05-11 21:42:16 +02:00
|
|
|
//
|
2010-11-16 23:09:02 +01:00
|
|
|
// This file is dual licensed under the MIT and the University of Illinois Open
|
|
|
|
// Source Licenses. See LICENSE.TXT for details.
|
2010-05-11 21:42:16 +02:00
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
// <iterator>
|
|
|
|
|
2010-08-22 02:29:01 +02:00
|
|
|
// template <InputIterator Iter>
|
|
|
|
// Iter::difference_type
|
|
|
|
// distance(Iter first, Iter last);
|
|
|
|
//
|
|
|
|
// template <RandomAccessIterator Iter>
|
2010-05-11 21:42:16 +02:00
|
|
|
// Iter::difference_type
|
|
|
|
// distance(Iter first, Iter last);
|
|
|
|
|
|
|
|
#include <iterator>
|
|
|
|
#include <cassert>
|
|
|
|
|
2013-01-03 03:29:29 +01:00
|
|
|
#include "../../../iterators.h"
|
2010-05-11 21:42:16 +02:00
|
|
|
|
|
|
|
template <class It>
|
|
|
|
void
|
|
|
|
test(It first, It last, typename std::iterator_traits<It>::difference_type x)
|
|
|
|
{
|
|
|
|
assert(std::distance(first, last) == x);
|
|
|
|
}
|
|
|
|
|
|
|
|
int main()
|
|
|
|
{
|
|
|
|
const char* s = "1234567890";
|
|
|
|
test(input_iterator<const char*>(s), input_iterator<const char*>(s+10), 10);
|
|
|
|
test(forward_iterator<const char*>(s), forward_iterator<const char*>(s+10), 10);
|
|
|
|
test(bidirectional_iterator<const char*>(s), bidirectional_iterator<const char*>(s+10), 10);
|
|
|
|
test(random_access_iterator<const char*>(s), random_access_iterator<const char*>(s+10), 10);
|
|
|
|
test(s, s+10, 10);
|
|
|
|
}
|