12
votes
3answers
641 views
SFINAE with invalid function-type or array-type parameters?
Please consider this code:
template<typename T>
char (&f(T[1]))[1];
template<typename T>
char (&f(...))[2];
int main() { char c[sizeof(f<void()>(0)) == …
2
votes
2answers
167 views
How can I have optional default constructor?
This class:
template <class T>
struct A {
A() : t(T()) {
}
A(const T& t_) : t(t_) {
}
T t;
};
won't compile if T doesn't have default constructor.
This on …
17
votes
7answers
455 views
How to call a templated function if it exists, and something else otherwise?
I want to do something like
template <typename T>
void foo(const T& t) {
IF bar(t) would compile
bar(t);
ELSE
baz(t);
}
I thought that something usin …
5
votes
6answers
317 views
How to detect whether there is a specific member variable in class?
For creating algorithm template function I need to know whether x or X (and y or Y) in class that is template argument. It may by useful when using my function for MFC CPoint class …
6
votes
6answers
746 views
Is there a Technique in C++ to know if a class has a member function of a given signature
Hi, I'm asking for a template trick to detect if a class has a specific member function of a given signature.
The problem is similar to the one cited here
http://www.gotw.ca/gotw/ …
1
vote
3answers
164 views
Determine whether a class has a function
Using a trick (described by Olivier Langlois), I can determine whether a class has a type defined:
template<typename T> struct hasType
{
template<typename C> stati …
4
votes
3answers
365 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?
1
vote
4answers
469 views
C++ “smart” predicate for stl algorithm.
I need to designe predicate for stl algorithms such as find_if, count_if.
namespace lib
{
struct Finder
{
Finder( const std::string& name ):
name_( …
2
votes
3answers
419 views
Using SFINAE to detect POD-ness of a type in C++
The original title here was
Workaround for SFINAE bug in VS2005 C++
This is tentative use of SFINAE to make the equivalent for the is_pod template class that exists in TR1 (In VS2 …
