Home | History | Annotate | Download | only in temp.variadic

Lines Matching refs:Values

70   template<int ...Values>
72 typedef int_tuple<Values*2 ...> type;
78 template<int ...Values>
80 typedef int_tuple<(Values*Values)...> type;
88 template<int ...Values>
89 struct square_tuple<int_tuple<Values...>> {
90 typedef int_tuple<(Values*Values)...> type;
96 template<int ...Values> struct sum;
110 template<int ... Values>
113 return sum<Values...>::value;