The enable-if tag has no wiki summary.
20
votes
6answers
464 views
Loosely coupled implicit conversion
Implicit conversion can be really useful when types are semantically equivalent. For example, imagine two libraries that implement a type identically, but in different namespaces. Or just a type that ...
7
votes
2answers
326 views
How can I write a function template for all types with a particular type trait?
Consider the following example:
struct Scanner
{
template <typename T>
T get();
};
template <>
string Scanner::get()
{
return string("string");
}
template <>
int ...
6
votes
1answer
95 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
1answer
587 views
Where is disable_if in C++0x?
Boost has both enable_if and disable_if, but C++0x seems to be missing the latter. Why was it left out? Are there meta-programming facilities in C++0x that allow me to build disable_if in terms of ...
5
votes
1answer
471 views
C++ - Iterating over a tuple & resolution of type vs constant parameters
I'm currently in the process of writing arithmetic operator overloads for tuples. The operator iterates over the tuple to perform the operation on each of its individual element. Here is the ...
4
votes
1answer
70 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
4answers
540 views
type signature of an enable_if'ed templated template constructor?
I usually declare my classes and templates, and then define their methods after (in the same header file, of course). I just find it easier to read that way. Well, I've come across a case where I ...
3
votes
1answer
587 views
Can I use boost::enable_if on a member function?
I'm writing a template class, and I want to allow an additional method to exist only for a certain template type. Currently the method exists for all template types, but causes a compilation error ...
3
votes
1answer
303 views
C++0x type inference messes with boost::enable_if
I'm trying to write a generic filtering function that performs linear interpolation at a given sampling coordinate in an multi-dimensional array (arbitrary rank). For this, I need a recursive function ...
2
votes
3answers
105 views
enable_if : case of templated method of a template base inherited several times
If I have a template base class with a template method :
template <typename T>
class S
{
public:
template <typename U>
void f(U p, typename enable_if<is_same<T, U> ...
2
votes
1answer
146 views
Specialize C++ member function based on class template argument
I have a class with a template parameter which should decide which of two styles of data it contains. Based on that parameter I want to implement a member function one of two different ways. I tried ...
2
votes
1answer
169 views
Why use boost::ice_or instead of || and boost::ice_and instead of && in enable_if?
As question states, is there a reason why people use the struct version over the normal conditionals?
2
votes
3answers
729 views
C++ boost enable_if question
Do I have any way to simplify the following statements? (probably, using boost::enable_if).
I have a simple class structure - Base base class, Derived1, Derived2 inherit from Base.
I have the ...
2
votes
3answers
254 views
enable_if and conversion operator?
Any chance to use enable_if with a type conversion operator? Seems tricky, since both return type and parameters list are implicit.
1
vote
3answers
65 views
Compiler Error C2766 : “explicit specialization; 'specialization' has already been defined” when using boost::disable_if
I'm trying to build a template class Fod
template<typename S0 = aux::EmptyType, typename S1 = aux::EmptyType, typename S2 = aux::EmptyType, typename S3 = aux::EmptyType, typename S4 = ...
1
vote
3answers
85 views
enable_if function defined when it shouldn't be
As an experiment, I am trying to make a void member function with no parameters change behavior based on the class template parameter:
#include <iostream>
#include <limits>
...
1
vote
0answers
94 views
enable_if on member template function of class template
This seams to be a bug in MSVC10?
#include <type_traits>
template<int j>
struct A{
template<int i>
typename std::enable_if<i==j>::type
t(){}
};
int main(){
...
1
vote
2answers
139 views
Mixing template specialisation and enable_if in a function template with only a templated return type
I have the following code that fails to compile on VC2010:
#include <type_traits>
using namespace std;
template <class C>
typename enable_if<true, C>::type
foo()
{ return C(); }
...
1
vote
2answers
244 views
C++ - Behavior of function template specialization with rvalue reference
I'm trying to implement a conditional pointer dereferencing function. The basic idea is as follows:
return is_pointer(arg) ? *arg : arg
In order to limit the number of necessary specialization, I'm ...
1
vote
1answer
310 views
Why can't the type be deduced in this template function?
template<typename T>
std::istream & read(std::istream & istr, typename std::enable_if<std::is_pod<T>::value, T>::type & value)
{
return istr.read( ...
1
vote
2answers
479 views
enable_if + disable_if combination provokes an ambiguous call
While trying to answer this question I wanted to suggest the use of enable_if + disable_if to allow the overload of a method based on the fact that a type was (or not) polymorphic.
So I created a ...
1
vote
1answer
200 views
Strange enable_if behaviour using nested classes (MSVC compiler bug or feature?)
After quite some time debugging my code, I tracked down the reason for my problems to some unexpected template specialization results using enable_if:
The following code fails the assertion in ...
0
votes
4answers
69 views
Arranging Class Structure at Compile Time according to Template Parameters
Is is possible in C++ to include/exclude a member variable based on template parameters?
Here is an example:
template< class T >
class RealNumber
{
T real;
};
template< class T >
...
0
votes
3answers
105 views
Can I use something like enable_if with an implicit conversion operator?
I have a (basically completed) matrix class (later in this post). If the matrix is a 1x1 matrix, then I'd like to have an implicit conversion to the backing type (e.g. a 1x1 float matrix should ...
0
votes
2answers
236 views
std::enable_if specialisation failing
I've been messing around with enable_if, and I seem to have stumbled upon some inconsistent behaviour. This is in VS2010. I've reduced it to the following sample.
#include <type_traits>
using ...
0
votes
3answers
87 views
C++ template type which has a specific member method
What is a good way to call a member function of template type? Will the below foo() code only compile for types that have the bla() function defined?
class A { void bla(); };
template<typename ...
0
votes
3answers
529 views
Boost enable_if problem
This is more or less copy pasted from boost docs and I keep getting an error (actually alot of errors)
I'm trying to make sure that a template class is only used with numbers using boost.
This is an ...
0
votes
3answers
568 views
Forward declaring a function that uses enable_if : ambiguous call
I have some trouble forward declaring a function that uses boost::enable_if: the following piece of code gives me a compiler error:
// Declaration
template <typename T>
void foo(T t);
// ...