Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

For some complicated reason, I want to convert any supported type T (coming from a template) to a list of types I have chosen. For this, I tried using a template structure named "Convert". For example:

Convert<short>::type should be int
Convert<int>::type should be int
Convert<char>::type should be int
Convert<float>::type should be double
Convert<double>::type should be double
Convert<const char*>::type should be std::string
Convert<std::string>::type should be std::string
etc.

Those above are easy to implement using template specialisation. But there is one case that is causing problems :

Convert<T>::type where T is a functor should be T

To handle this, I think I have to use SFINAE but I can't manage to make it compile.

The code below gives me "partial specialization cannot match argument list for primary template" (ie. writing "Convert" is forbidden) :

template<typename T, typename = decltype(&T::operator())>
struct Convert<T>       { typedef T type; };

And this one gives me "template parameter not used or deducible in partial specialization" (ie. it thinks that T is not used) :

template<typename T>
struct Convert<typename std::enable_if<std::is_function<typename T::operator()>::value,T>::type>
 { typedef T type; };

I have no idea of what to do, all my attempts result in one of the two errors above.

EDIT: I would like to catch other generic things using the same model, so I can't just write "typedef T type" in the non-specialized structure.

Thanks

share|improve this question
What do you mean "catch other generic things"? – GManNickG Jul 24 '10 at 9:34
You need to clarify what you mean by "a functor". Is a function also good? Or is it only function objects? If so, then anything with operator() overloaded? Or derived from std::function_object? A specific number of parameters? – sbi Jul 24 '10 at 9:42
Examples: "Convert<T>::type is int if T is convertible to an int", or "Convert<T>::type is ... if T has a begin and an end function", etc. – Tomaka17 Jul 24 '10 at 9:44
@sbi: In the example above I tried to catch function objects with an operator() (any number of parameter) ; I can handle functions with another specialisation – Tomaka17 Jul 24 '10 at 9:46
@Tomaka17: have you seen this: stackoverflow.com/questions/257288/…? (link changed) – sbi Jul 24 '10 at 9:48
show 5 more comments

1 Answer

up vote 2 down vote accepted

I'd suggest you use the first approach, but to make it work, you'll have to

Declare the master template with one unused template-argument:

template <class T, class = void> Convert;

Add a void parameter to all specializations of the template you use now.

Define your "functor specialization" like this:

template<typename T, typename std::enable_if<std::is_function<typename T::operator()>::value,void>::type>

That means you make the second argument void if it is a functor (so it matches the default template argument) or nonexisting if it isn't.

BTW why do you use typename in typename T::operator()? AFAIK, operator() is not a type.

share|improve this answer
Great idea, thanks. Apparently I don't even need to add void to my other specialisations. However the compiler uses the unspecialized structure for the moment, I'll try to make it work. – Tomaka17 Jul 24 '10 at 10:49
You're maybe right for the typename, anyway I tried several things like std::enable_if<!std::is_void<decltype(&T::operator())>::value>::type which I think is correct – Tomaka17 Jul 24 '10 at 10:51
Convert<T, typename std::enable_if<true,void>::type> is working, so there must be a problem in my condition – Tomaka17 Jul 24 '10 at 11:05
The code in my second commentary works on g++ but not on MSVC++, however I made it work on both compiler by creating a "IsFunctor" type inspired by stackoverflow.com/questions/257288/… Thanks – Tomaka17 Jul 24 '10 at 11:12

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.