metafunctions.cpp revision dee196ef31073b40c48d60d9fa626ee1d8daaaee
1// RUN: %clang_cc1 -std=c++0x -fsyntax-only -verify %s
2
3// This is a collection of various template metafunctions involving
4// variadic templates, which are meant to exercise common use cases.
5template<typename T, typename U>
6struct is_same {
7  static const bool value = false;
8};
9
10template<typename T>
11struct is_same<T, T> {
12  static const bool value = true;
13};
14
15template<typename...> struct tuple { };
16template<int ...> struct int_tuple { };
17
18namespace Count {
19  template<typename Head, typename ...Tail>
20  struct count {
21    static const unsigned value = 1 + count<Tail...>::value;
22  };
23
24  template<typename T>
25  struct count<T> {
26    static const unsigned value = 1;
27  };
28
29  int check1[count<int>::value == 1? 1 : -1];
30  int check2[count<float, double>::value == 2? 1 : -1];
31  int check3[count<char, signed char, unsigned char>::value == 3? 1 : -1];
32}
33
34namespace CountWithPackExpansion {
35  template<typename ...> struct count;
36
37  template<typename Head, typename ...Tail>
38  struct count<Head, Tail...> {
39    static const unsigned value = 1 + count<Tail...>::value;
40  };
41
42  template<>
43  struct count<> {
44    static const unsigned value = 0;
45  };
46
47  int check0[count<>::value == 0? 1 : -1];
48  int check1[count<int>::value == 1? 1 : -1];
49  int check2[count<float, double>::value == 2? 1 : -1];
50  int check3[count<char, signed char, unsigned char>::value == 3? 1 : -1];
51}
52
53namespace Replace {
54  // Simple metafunction that replaces the template arguments of
55  // template template parameters with 'int'.
56  template<typename T>
57  struct EverythingToInt;
58
59  template<template<typename ...> class TT, typename T1, typename T2>
60  struct EverythingToInt<TT<T1, T2> > {
61    typedef TT<int, int> type;
62  };
63
64  int check0[is_same<EverythingToInt<tuple<double, float>>::type,
65             tuple<int, int>>::value? 1 : -1];
66}
67
68namespace Math {
69  template<int ...Values>
70  struct double_values {
71    typedef int_tuple<Values*2 ...> type;
72  };
73
74  int check0[is_same<double_values<1, 2, -3>::type,
75                     int_tuple<2, 4, -6>>::value? 1 : -1];
76
77  template<int ...Values>
78  struct square {
79    typedef int_tuple<(Values*Values)...> type;
80  };
81
82  int check1[is_same<square<1, 2, -3>::type,
83                     int_tuple<1, 4, 9>>::value? 1 : -1];
84
85  template<typename IntTuple> struct square_tuple;
86
87  template<int ...Values>
88  struct square_tuple<int_tuple<Values...>> {
89    typedef int_tuple<(Values*Values)...> type;
90  };
91
92  int check2[is_same<square_tuple<int_tuple<1, 2, -3> >::type,
93                     int_tuple<1, 4, 9>>::value? 1 : -1];
94
95  template<int ...Values> struct sum;
96
97  template<int First, int ...Rest>
98  struct sum<First, Rest...> {
99    static const int value = First + sum<Rest...>::value;
100  };
101
102  template<>
103  struct sum<> {
104    static const int value = 0;
105  };
106
107  int check3[sum<1, 2, 3, 4, 5>::value == 15? 1 : -1];
108}
109
110namespace Indices {
111  template<unsigned I, unsigned N, typename IntTuple>
112  struct build_indices_impl;
113
114  template<unsigned I, unsigned N, int ...Indices>
115  struct build_indices_impl<I, N, int_tuple<Indices...> >
116    : build_indices_impl<I+1, N, int_tuple<Indices..., I> > {
117  };
118
119  template<unsigned N, int ...Indices>
120  struct build_indices_impl<N, N, int_tuple<Indices...> > {
121    typedef int_tuple<Indices...> type;
122  };
123
124  template<unsigned N>
125  struct build_indices : build_indices_impl<0, N, int_tuple<> > { };
126
127  int check0[is_same<build_indices<5>::type,
128                     int_tuple<0, 1, 2, 3, 4>>::value? 1 : -1];
129}
130