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 or not.

link|improve this question

You want code that compiles whether <vector> was included or not, but does different things? That's evil, especially considering that it's up to the implementation how standard headers mutually include each other. – Steve Jessop Nov 17 '10 at 19:32
3  
This suggests no, but I'm not at all good with SFINAE: stackoverflow.com/questions/3600244/… – Steve Jessop Nov 17 '10 at 19:36
feedback

2 Answers

up vote 1 down vote accepted

It can do, although I've only managed to make it work in C++0x.

struct no_type {};
struct is_vector_included {
    template<typename U> static decltype(std::vector<U>::iterator()) func( U* );
    template<typename U> static no_type func( ... );
    static const bool value = !std::is_same<no_type, decltype(func<int>(nullptr))>::value;
};

The structure is very curious and although there should be certain obvious simplifications, they don't work. More importantly, why don't you just #include <vector> to be certain?

link|improve this answer
Unfortunately, my "target audience" does not have a C++0x compiler. What is no_type? – FredOverflow Nov 17 '10 at 19:31
@FredOverflow: Sorry- it's an empty struct. The idea is that there's no way that any other type could possibly be no_type, so whatever type I end up finding through decltype, if the substitution succeeded, it's certainly not no_type. Edit: Still curious as to why you don't just #include it. – DeadMG Nov 17 '10 at 19:39
@Dead: Simply including it is probably the easiest/cleanest way. Still curious if this is possible, though :) – FredOverflow Nov 17 '10 at 19:54
What compiler does it compile with? I'm getting an error with GCC. As far as I see, std::vector must be available regardless of U, and SFINAE applies only to whether a particular specialization has an iterator or not? - Otherwise you could just replace the C++0x things with boost's counterparts. – UncleBens Nov 17 '10 at 20:46
@UncleBens: I made it work on MSVC10. It breaks at the drop of a hat, though, so if you had something really similar but not quite, then it won't work. – DeadMG Nov 17 '10 at 21:00
show 1 more comment
feedback

I have one problem with the question:

If <vector> was not included, then how can you test whether a type has been introduced in the translation unit without knowing about it ?

You are effectively asking the compiler to test if vector exists, but how can you ask that without declaring vector first and foremost ?

I don't see how any solution could possibly work and be standard compliant, but I am no standardista so there might be a caveat I am not aware of.

link|improve this answer
the OP wants to know if vector was included or not in the first place – Chubsdad Nov 18 '10 at 7:43
@Chusbad: and I understand that, but C++ does not allow to query for the presence (or absence) of a symbol as far as I know, since to USE a symbol (even in a simple is_same query) you need it to be DECLARED. How would vector be declared without <vector> be included ? – Matthieu M. Nov 20 '10 at 14:37
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.