libcxx initial import

git-svn-id: https://llvm.org/svn/llvm-project/libcxx/trunk@103490 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Howard Hinnant
2010-05-11 19:42:16 +00:00
commit bc8d3f97eb
3893 changed files with 1209942 additions and 0 deletions

View File

@@ -0,0 +1,82 @@
//===----------------------------------------------------------------------===//
//
// <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>The LLVM Compiler Infrastructure
//
// This file is distributed under the University of Illinois Open Source
// License. See LICENSE.TXT for details.
//
//===----------------------------------------------------------------------===//
// <iterator>
// template<class Category, class T, class Distance = ptrdiff_t,
// class Pointer = T*, class Reference = T&>
// struct iterator
// {
// typedef T value_type;
// typedef Distance difference_type;
// typedef Pointer pointer;
// typedef Reference reference;
// typedef Category iterator_category;
// };
#include <iterator>
#include <type_traits>
struct A {};
template <class T>
void
test2()
{
typedef std::iterator<std::forward_iterator_tag, T> It;
static_assert((std::is_same<typename It::value_type, T>::value), "");
static_assert((std::is_same<typename It::difference_type, std::ptrdiff_t>::value), "");
static_assert((std::is_same<typename It::pointer, T*>::value), "");
static_assert((std::is_same<typename It::reference, T&>::value), "");
static_assert((std::is_same<typename It::iterator_category, std::forward_iterator_tag>::value), "");
}
template <class T>
void
test3()
{
typedef std::iterator<std::bidirectional_iterator_tag, T, short> It;
static_assert((std::is_same<typename It::value_type, T>::value), "");
static_assert((std::is_same<typename It::difference_type, short>::value), "");
static_assert((std::is_same<typename It::pointer, T*>::value), "");
static_assert((std::is_same<typename It::reference, T&>::value), "");
static_assert((std::is_same<typename It::iterator_category, std::bidirectional_iterator_tag>::value), "");
}
template <class T>
void
test4()
{
typedef std::iterator<std::random_access_iterator_tag, T, int, const T*> It;
static_assert((std::is_same<typename It::value_type, T>::value), "");
static_assert((std::is_same<typename It::difference_type, int>::value), "");
static_assert((std::is_same<typename It::pointer, const T*>::value), "");
static_assert((std::is_same<typename It::reference, T&>::value), "");
static_assert((std::is_same<typename It::iterator_category, std::random_access_iterator_tag>::value), "");
}
template <class T>
void
test5()
{
typedef std::iterator<std::input_iterator_tag, T, long, const T*, const T&> It;
static_assert((std::is_same<typename It::value_type, T>::value), "");
static_assert((std::is_same<typename It::difference_type, long>::value), "");
static_assert((std::is_same<typename It::pointer, const T*>::value), "");
static_assert((std::is_same<typename It::reference, const T&>::value), "");
static_assert((std::is_same<typename It::iterator_category, std::input_iterator_tag>::value), "");
}
int main()
{
test2<A>();
test3<A>();
test4<A>();
test5<A>();
}