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
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
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 ...
9
votes
3answers
521 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 ...
7
votes
1answer
286 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
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 ...
5
votes
1answer
137 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
380 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
95 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
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
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
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
512 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. ...
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
323 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: ...
3
votes
2answers
295 views

Overloaded functions are ambiguous when using SFINAE principle

I came across some code written in VS7.1 and now I'm trying to get it to work for MacOSX. The code snippet below I understand is about the SFINAE principle. From what I understand, the code is used to ...
3
votes
1answer
246 views

Checking whether a template argument has a member function [closed]

Possible Duplicate: Is it possible to write a C++ template to check for a function's existence? This is very similar to my earlier question. I want to check whether a template argument ...
3
votes
1answer
217 views

Concept checking of static member variables compile error on gcc

I'm trying to apply the technique described in http://www.drdobbs.com/tools/227500449 With the sample code below, I expect the output: 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 And this is indeed ...
3
votes
1answer
155 views

does sfinae instantiates a function body?

I want to detect existence of a specific member function for a class, using the usual SFINAE trick. template<typename T> struct has_alloc { template<typename U,U x> struct dummy; ...
2
votes
1answer
182 views

C1001: An internal error has occurred in the compiler

This should be self explanatory. I'm trying to implement a distribution sort, and the MSVC compiler is crashing. It seems to be a specific case to do with my SFINAE to detect a member function, this ...
2
votes
2answers
203 views

Problem with SFINAE

Why this code (fnc value in class M) do not get resolved by SFINAE rules? I'm getting an error: Error 1 error C2039: 'type' : is not a member of ...
2
votes
1answer
113 views

Do something if template type is instantiable

I would like to use the SFINAE pattern to execute some code if I can instantiate a certain template class. Let's imagine this: //Only instantiable with types T for which T.x() is ok: template ...
2
votes
1answer
249 views

Can I use a SFINAE test in a control flow statement?

I have an SFINAE test for checking if an class has a function. The test works correctly, but I get compiler errors when I try to use it in an if statement. //SFINAE test for setInstanceKey() ...
1
vote
2answers
78 views

Is C++ (03) SFINAE aspect compiler independent?

I have a header file, whose functionality relies heavily on the success of SFINAE. In present g++ 4.6 it works as expected. Should I assume that, my code will behave seamlessly in the same way for all ...
1
vote
1answer
74 views

Is it possible to make templates choose an alternate source line if an original source line fails to compile?

I'm looking for a relatively generic: try to compile this line of code if that succeeds, compile and use that line of code. Otherwise use some other line of code I've got a case where I'd like to ...
1
vote
1answer
66 views

MSVC10 SFINAE causing fatal error rather than substitution failure

I've got a (relatively) brief code sample here. #include <type_traits> template<typename T> class function; template<typename Ret> class function<Ret()> { public: ...
1
vote
1answer
295 views

C++ toString member-function and ostream operator << integration via templates

I'm a beginner C++ developer and I have a question about toString and ostream operator integration via templates. I have such code: struct MethodCheckerTypes{ typedef unsigned char ...
1
vote
2answers
178 views

Adapting checking for member functions existence to function arguments

I've been trying to adapt this solution for enabling the existence of ordinary (non-member) functions. In my case, I have a lot of global string-utility-type functions that take any string type T such ...
1
vote
3answers
149 views

Why should the member function declarations of a class template be all well-formed?

OK, suppose I want to check whether the template parameter has a nested type/typedef XYZ. template <class T> struct hasXZY { typedef char no; typedef struct { char x[2]; ...
1
vote
1answer
427 views

SFINAE failing with enum template parameter

Can someone explain the following behaviour (I'm using Visual Studio 2010). header: #pragma once #include <boost\utility\enable_if.hpp> using boost::enable_if_c; enum WeekDay {MONDAY, ...
1
vote
3answers
435 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> static char test( ...
1
vote
4answers
1k 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_( name ) { ...

1 2