Tagged Questions

60
votes
13answers
10k views

Is it possible to write a C++ template to check for a function's existence?

Is it possible to write a C++ template that changes behavior depending on if a certain member function is defined on a class? Here's a simple example of what I would want to write: template<class ...
30
votes
20answers
19k views

How can I add reflection to a C++ application?

I'd like to be able to introspect a C++ class for its name, contents (i.e. members and their types) etc. I'm talking native C++ here, not managed C++, which has reflection. I realise C++ supplies some ...
23
votes
5answers
426 views

How to check whether operator== exists?

I am trying to create an example, which would check the existence of the operator== (member or, non-member function). To check whether a class has a member operator== is easy, but how to check whether ...
23
votes
7answers
1k 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 using enable_if would do ...
23
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?
20
votes
5answers
1k views

Explain C++ SFINAE to a non-C++ programmer

What is SFINAE in C++? Can you please explain it in words understandable to a programmer who is not versed in C++? Also, what concept in a language like Python does SFINAE correspond to?
20
votes
3answers
1k 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]; } I expected ...
12
votes
7answers
1k 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 or GDI+ PointF ...
11
votes
2answers
146 views

Excluding std::pair constructors that use explicit construction

Following on from this answer, it seems these constructors: template<class U, class V> pair(pair<U, V>&& p); template<class U, class V> pair(const pair<U, V>& p); ...
9
votes
3answers
520 views

Is it possible to use SFINAE/templates to check if an operator exists?

I'm trying to check if an operator exists at compile time, if it doesn't I just want it ignored, is there any way to do that? example operator: template <typename T> QDataStream& ...
9
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 ...
8
votes
3answers
97 views

Can SFINAE detect private access violations?

I wonder whether if i test for some member of a class and the member is private what will sfinae respond? Will it error out hard or will it say ok or will it error out in the sfinae way?
8
votes
5answers
238 views

How do I determine if a type is callable with only const references?

I want to write a C++ metafunction is_callable<F, Arg> that defines value to be true, if and only if the type F has the function call operator of the form SomeReturnType operator()(const Arg ...
8
votes
4answers
490 views

Detect operator support with decltype/SFINAE

A (somewhat) outdated article explores ways to use decltype along with SFINAE to detect if a type supports certain operators, such as == or <. Here's example code to detect if a class supports ...
7
votes
2answers
100 views

SFINAE to test a free function from another namespace

I was trying to come up with a hack to test if std::isnan is defined without special casing compilers in the preprocessor, and came up with the following, which I was expecting to work fine. #include ...
7
votes
1answer
285 views

Detect if class has overloaded function fails on Comeau compiler

I'm trying to use SFINAE to detect if a class has an overloaded member function that takes a certain type. The code I have seems to work correctly in Visual Studio and GCC, but does not compile using ...
7
votes
6answers
3k views

Is there a Technique in C++ to know if a class has a member function of a given signature

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/071.htm but not the ...
6
votes
6answers
127 views

Detecting if a type can be derived from in C++

I have the following template class and a (global) variable of its type: template <typename ClassT> struct ClassTester : public ClassT { typedef ClassT type; }; ClassTester<int> ...
6
votes
1answer
93 views

inheriting from an enable_if'd base

I'm trying to partially specialize a trait for arrays of non-chars: template<typename T> struct is_container : std::false_type {}; template<typename T, unsigned N> struct ...
6
votes
2answers
144 views

Hiding member functions in a template class

Is it possible to hide some member functions in a template class? Let's imagine we have something like: template <class T> class Increment { public: void init(T initValue) { ...
6
votes
1answer
2k views

boost::enable_if class template method

I got class with template methods that looks at this: struct undefined {}; template<typename T> struct is_undefined : mpl::false_ {}; template<> struct is_undefined<undefined> : ...
6
votes
1answer
599 views

If the address of a function can not be resolved during deduction, is it SFINAE or a compiler error?

In C++0x SFINAE rules have been simplified such that any invalid expression or type that occurs in the "immediate context" of deduction does not result in a compiler error but rather in deduction ...
6
votes
2answers
312 views

Why this works (Templates, SFINAE). C++

referring to yesterday's post, this woke me up this morning. Why does this actually work? As long as the function test is concerned, this function has no body so how can it perform anything? I want ...
6
votes
4answers
892 views

Why do you sometimes need to write <typename T> instead of just <T>?

I was reading the Wikipedia article on SFINAE and encountered following code sample: struct Test { typedef int Type; }; template < typename T > void f( typename T::Type ) {} // ...
5
votes
4answers
118 views

boost::enable_if not in function signature

This is just a question about style: I don't like the way of C++ for template metaprogramming that requires you to use the return type or add an extra dummy argument for the tricks with SFINAE. So, ...
5
votes
1answer
136 views

Templates instantiation confusion

This is my code to check whether class has member function begin or not : template<typename T> struct has_begin { struct dummy {typedef void const_iterator;}; typedef typename ...
5
votes
1answer
119 views

Why SFINAE trick doesn't work for non-class type when tried for class member pointer?

With curiosity, I was trying an alternate implementation of is_class construct using the sizeof() trick. Following is the code: template<typename T> struct is_class { typedef char ...
5
votes
2answers
378 views

SFINAE: detect if class has free function

Is there a way, using SFINAE, to detect whether a free function is overloaded for a given class? Basically, I’ve got the following solution: struct has_no_f { }; struct has_f { }; void f(has_f ...
5
votes
3answers
397 views

SFINAE approach comparison

The following code shows an SFINAE implementation to check whether a type (basically a class) contains a member function member_func at compile time. #define CHECKER(func_name,class_name) ...
5
votes
2answers
180 views

SFINAE: some failures more equal than others?

I'm trying to use SFINAE to distinguish a class that has a member called 'name'. I set things up in what seems to be the standard pattern but it's not working -- instead of silently ignoring the ...
4
votes
2answers
92 views

Specializing a method template for classes in a namespace

I'm using the following compile-time 'trick' (based on ADL) to create a function that is only valid/defined/callable by classes in the same namespace. namespace Family1 { struct ...
4
votes
1answer
56 views

Is there a way to use SFINAE to determine if a call to a templated function would fail due to the types provided?

I have a templated class that I am using to provide a method that will use boost::lexical_cast to cast its std::string parameters to the type specified in the template, only if the lexical cast is ...
4
votes
2answers
73 views

Checking whether a template argument is a reference [C++03]

I want to check whether a template argument is of reference type or not in C++03. (We already have is_reference in C++11 and Boost). I made use of SFINAE and the fact that we can't have a pointer to ...
4
votes
1answer
150 views

Boost MPL: Call a (member) function only if it exists

I have a class A that has a template parameter T. There are use cases where the class T offers a function func1() and there are use cases where T doesn't offer it. A function f() in A should call ...
4
votes
1answer
57 views

Shorter way of resolving type to the class::typedef

I have several classes. For now they are separated by one symbol. Few of them contains type (a typedef) and few of them doesn't have it. struct A { ... public: typedef someclass type; } struct B { ...
4
votes
2answers
96 views

SFINAE doesn't detect T::reference

The std::vector<T> class is a model of the STL Container concept, and as such any proper implementation of vector has to include a nested typedef value_type as well as reference. This should be ...
4
votes
2answers
264 views

Ill-formed C++0x code or compiler bug?

In the following C++0x code I tried to clone an object by using a clone member function (if it exists) and falling back on a copy constructor: struct use_copy_ctor {}; struct prefer_clone_func : ...
4
votes
3answers
279 views

SFINAE compiler troubles

The following code of mine should detect whether T has begin and end methods: template <typename T> struct is_container { template <typename U, typename U::const_iterator (U::*)() const, ...
4
votes
1answer
193 views

use sfinae to test namespace members existence

I was trying to figure out if it is possible to use sfinae to test namespace member existence. Google is rather silent about it. I've tried the following code, but it fails. namespace xyz{ struct ...
4
votes
3answers
510 views

Multiple SFINAE rules

After reading the answer to this question, I learned that SFINAE can be used to choose between two functions based on whether the class has a certain member function. It's the equivalent of the ...
4
votes
1answer
193 views

SFINAE canAdd template problem

I'm trying tow write a SFINAE template to determine whether two classes can be added together. This is mostly to better understand how SFINAE works, rather than for any particular "real world" reason. ...
4
votes
2answers
332 views

Why does SFINAE not apply to this?

I'm writing some simple point code while trying out Visual Studio 10 (Beta 2), and I've hit this code where I would expect SFINAE to kick in, but it seems not to: template<typename T> struct ...
3
votes
1answer
66 views

Substitution failure is not an error (SFINAE) for enum

Is there a way to use Substitution failure is not an error (SFINAE) for enum? template <typename T> struct Traits { } template <> struct Traits<A> { }; template <> struct ...
3
votes
1answer
65 views

Type not inherited in SFINAE for multiple inheritance?

I am using a SFINAE mechanism to deduce a type. Resolve<T>::type is deduced to T if class T doesn't contain yes and it's deduced to MyClass if it contains yes. class MyClass {}; ...
3
votes
3answers
87 views

Is it possible to specialize a template definition based on the existence of a nested typedef of a template type parameter?

I have a template, template <typename T> class wrapper, that I would like to specialize based on the existence of typename T::context_type. If typename T::context_type is declared, then the ...
3
votes
3answers
127 views

Why SFINAE results in compiler error where it should have worked?

I was trying to implement a meta-program which finds if given pointer type is const or not. i.e. is_const<TYPE*>::value should be false is_const<const TYPE*>::value should be true ...
3
votes
1answer
123 views

How to determine if a class contains a subclass / type?

Can we have a SFINAE trick to know, if the class has certain subclass/type. Something like, template<typename TYPE> // searches for "my_type" struct has_inner_type { enum { value = ...
3
votes
3answers
267 views

Differentiate between ambiguous member request error and member does not exist error in SFINAE context?

Edit: Posted an answer of my own, kept the original accepted answer... got me thinking about aliases. Edit: My question is directed at the possibility of differentiating ambiguity vs existence of a ...
3
votes
1answer
198 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 ...
3
votes
2answers
322 views

Using SFINAE to check for global operator<<?

I want to have several overloaded, global to_string() functions that take some type T and convert it to its string representation. For the general case, I want to be able to write: ...

1 2