Tagged Questions
24
votes
3answers
5k views
C++ SFINAE examples?
I want to get into more template meta-programming. I know that SFINAE stands for "substitution failure is not an error." But can someone show me a good use for SFINAE?
10
votes
3answers
2k views
SFINAE to check for inherited member functions
Using SFINAE, i can detect wether a given class has a certain member function. But what if i want to test for inherited member functions?
The following does not work in VC8 and GCC4 (i.e. detects ...
3
votes
1answer
210 views
Test for existence of std::ostream operator<< via SFINAE GCC bug?
I decided to try my own hand at a bit of Substitution Failure Is Not A Error (SFINAE) code to test if the global operator<< is defined for a custom type.
The Stack Overflow question SFINAE ...
2
votes
2answers
599 views
SFINAE + sizeof = detect if expression compiles
I just found out how to check if operator<< is provided for a type.
template<class T> T& lvalue_of_type();
template<class T> T rvalue_of_type();
template<class T>
struct ...
1
vote
2answers
156 views
Detect the existence of types
SFINAE allows us to detect if a type has certain data members or member functions. Can it also be used to detect if a type exists at all? Background: I want to know whether <vector> was included ...
1
vote
1answer
361 views
method compile time assertion; still not working
I need a easy way to assert inside a template that a template parameter implements a method (or one of its parent classes). I've read Concept check library but is hard to find an easy example to do ...
0
votes
2answers
802 views
Problem with applying enable_if
In code:
template<class T>
struct is_builtin
{
enum {value = 0};
};
template<>
struct is_builtin<char>
{
enum {value = 1};
};
template<>
struct ...