Any chance to use enable_if with a type conversion operator? Seems tricky, since both return type and parameters list are implicit.
| |||
|
feedback
|
|
dixit the documentation: | |||
|
feedback
|
|
From the little research I did (and ignoring the c++0x comment from Johannes), my answer is that it depends what you want the enable_if for. If you want the conversion operation to T to exist or not from the type T then it seems that the answer is no, there is no way in C++03 (as Ugo said). But if you need the enable_if to change the behavior of the operator depending on the type of T then yes, there is a workaround which is to call an enabled helper function (called "to" as Matthieu suggested).
For the record, I was frustrated with this for several days, until I realized that wanted enable_if not for SFINAE but for compile-time behavior change. You may also find that this is the real reason for your need for enable_if also. Just a suggestion. | ||||
|
feedback
|
|
While I can understand the theoritecal interest in the question, I personally refrain from using conversion operators as much as possible. The only one I ever use with consistence is the conversion to a pseudo-boolean (using the Safe Bool idiom), for smart-pointers or proxies, and as noted I use a trick to actually prevent the full boolean semantic... If I ever want to facilitate conversions, I much prefer something along the line of:
which does not suffer from the limitations (in term of signature) of the conversion operator and requires explicit invocation, just because it's a bit clearer. | |||
|
feedback
|
template<typename T, typename = typename enable_if<Cond>::type> operator T() { ... }– Johannes Schaub - litb Jun 19 '10 at 22:06