Tagged Questions

0
votes
5answers
105 views

Can C++ compiler try different (template T) implementations until it finds one that compiles (for T)?

// First try this: template <class T> T Read(istream& in) { T t; in >> t; return t; } // If there is no operator>>(istream&, T) try this: templa …
2
votes
2answers
133 views

Template specialization for enum

Is it possible to specialize a templatized method for enums? Something like (the invalid code below): template <typename T> void f(T value); template <> void f<en …
0
votes
3answers
69 views

Templated parameter for a template specialisation?

Hi I've got a static member of a templated class that I want defined for a sub group of classes that are templated ie: template <typename T> class FooT { private: static i …
2
votes
3answers
121 views

Creating a new primitive type

Is there a way to create a new type that is like one of the basic types (eg char), and can be implcitly converted between, but will resolve diffrently in templates, such that for e …
1
vote
1answer
177 views

C++ Template Specialization

The following template specialization code template<typename T1, typename T2> void spec1() { } Test case 1 template< typename T1> //compile error void spec1<int …
4
votes
2answers
143 views

Is it possible to access values of non-type template parameters in specialized template class?

Is it possible to access values of non-type template parameters in specialized template class? If I have template class with specialization: template <int major, int minor& …
1
vote
5answers
471 views

Do template specializations require template<> syntax?

I have a visitor class resembling this: struct Visitor { template <typename T> void operator()(T t) { ... } void operator()(bool b) { …
2
votes
1answer
403 views

Function template specialization format

What is the reason for the second brackets <> in the following function template: template<> void doh::operator()<>(int i) This came up in SO question where it wa …