may be something like
template <class C>
struct apply<template<> struct T<C N>>
{
typedef typename T<N + 1>::type type;
};
just for example it returns next integral constant type.
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
For any fixed type you can specialize directly:
You can also specialize on templates that take one integer parameter:
The latter will match any
template <unsigned int> class, though, so be careful.