Substitution failure is not an error. This is a C++ programming technique that allows templates to verify properties about their template parameters, thus allowing different specializations to be used if certain kinds of objects are available.
5
votes
1answer
70 views
type_traits segmentation fault with std::string
Gathering the information from Using SFINAE to check for global operator<<? and templates, decltype and non-classtypes, I got the following code:
http://ideone.com/sEQc87
Basically I combined ...
3
votes
2answers
139 views
C++11: Specialize/restrict method on depending on a container's value_type
I have a template action method that accepts any kind of STL container C. However the contained items (C::value_type) must be either ClassA or ClassB. So far so good:
struct Whatever {
...
1
vote
2answers
76 views
rvalue or lvalue (const) reference parameter
I want to pass a parameter(s) (of some concrete type, say int) to the member function by r- or l- value (const) reference. My solution is:
#include <type_traits>
#include <utility>
...
2
votes
2answers
110 views
Static assertions and SFINAE
Consider this:
template <typename T>
struct hash
{
static_assert(false,"Not implemented.");
};
struct unhashable {};
template <typename T>
auto test(const T &t) -> ...
1
vote
2answers
142 views
SFINAE in class template constructors
I'm trying to make somthing with templates and SFINAE, in which I'm a beginner. I'm wasting a huge amount of time to make work every simplest thing. Can you help me understand how it works ?
The ...
0
votes
0answers
26 views
SFINAE not working with private members
I have the following code:
struct A
{
int x;
};
class B
{
int x;
public:
int get_x() const { return x; }
};
template< class T >
auto foo(T const & t) -> ...
1
vote
2answers
71 views
SFINAE set of types contains the type
I want to construct my class class C from each type in set of types ...T. sizeof...(T) is large enough so that I did not want to write out all the constructor variants as below:
// T : {T1, T2, ..., ...
16
votes
2answers
229 views
'if' with template parameters or SFINAE is preferred?
Preferred is this:
template<typename T>
bool isNotZero(const T &a)
{
if (std::is_floating_point<T>::value) return abs(a) > std::numeric_limits<T>::epsilon();
else ...
2
votes
1answer
100 views
SFINAE and order of definition
Consider this simple SFINAE test to determine if a type can be an argument to std::begin
#include <utility>
template <class T> constexpr auto
std_begin_callable (T const*) -> ...
1
vote
1answer
93 views
SFINAE - Detect constructor with one argument
Does anyone know how to detect a constructor with one argument? For example, this struct should have a negative result:
struct MyStruct
{
MyStruct( int x, int x2 ) : y( x ) {}
int y;
};
I have ...
4
votes
2answers
260 views
What is decltype with two arguments?
Edit, in order to avoid confusion: decltype does not accept two arguments. See answers.
The following two structs can be used to check for the existance of a member function on a type T during ...
3
votes
4answers
190 views
Specialization for any vector
I'd like to define a function in a template class for different cases of T. My problem is to define the case where T is a vector (whatever it contains).
Here's one of my first attempts :
...
4
votes
1answer
115 views
Check if type is declared as a meta type system (for SFINAE)
To make a case distinction for a parameter t of type T using SFINAE, I want to know if the statement
QVariant::fromValue(t);
and / or
QVariant::value<T>();
compiles. If the one compiles, ...
1
vote
1answer
73 views
Substitution failure sometimes is an error
It seems that substitution failure sometimes is an error.
Could someone tell me when it will be an error and when it will not?
See run result here
Thank you!
Thank you for the informative answer!
...
5
votes
1answer
117 views
Conditionally enable a sub-type (similar to enable_if to enable functions)
I have a traits class which defines types for "ranges" (or containers, sequences) by deducing the type of member functions, like this:
template<class R>
struct range_type_traits
{
// ...
3
votes
1answer
62 views
enable/disable typedef with sfinae is impossible. Workarounds?
I have different types of matrices and I want to create a generalized submatrix reference class MatrixRef.
Matrices implement only a few of members like row(i), column(i), diagonal() etc and ...
17
votes
1answer
274 views
How to avoid this sentence is false in a template SFINAE?
So I want to write an automatic !=:
template<typename U, typename T>
bool operator!=(U&& u, T&& t) {
return !( std::forward<U>(u) == std::forward<T>(t) );
}
but ...
1
vote
1answer
49 views
Substitute fully instantiated classes with partially instantiated ancestor classes
I want accepted_dense_vector<??>::value to return 'true' when I give template parameters in the form:
C<T> when C is uvector, dynamic_array and T is std::is_arithmetic.
...
0
votes
1answer
58 views
Recursive type upcasting with templates
I work with containers.
If A is a container then container_traits<A>::reference_container must type an A.
If container RefContainer<C> is_base_of A, then ...
3
votes
2answers
140 views
Cannot trait an inherited class as base with SFINAE
I create a container_traits class to check if a container is std::array or not.
But it fails to catch a container inherited from std::array.
Any solutions?
#include <vector>
#include ...
0
votes
0answers
54 views
How to check if a class defines a member variable? [duplicate]
I'm trying to find out a way to check if given template argument defines a member variable. What are possible solutions?
8
votes
1answer
136 views
Is there any guarantee on the order of substitution in a function template after type deduction?
Consider this function template:
template<typename T>
typename soft_error<T>::type foo(T, typename hard_error<T>::type)
{ }
After deducing type T from the type of the first ...
3
votes
2answers
98 views
Making scoped enumerations comparable to underlying type
I am trying to make scoped enumerations in my program comparable to underlying type but the following code does not work. Is it because of poor C++11 standard support in the compiler I am using (VC11) ...
3
votes
2answers
175 views
C++ GCC Why this sfinae code can be compiled with GCC 4.7, but not with 4.8?
I like to use local classes in template classes to perform constructions like "static if". But I've faced with the problem that gcc 4.8 does not want to compile my code. However 4.7 does.
This ...
6
votes
2answers
216 views
SFINAE working in return type but not as template parameter
I already used the SFINAE idiom quite a few times and I got used to put my std::enable_if<> in template parameters rather than in return types. However, I came across some trivial case where it ...
3
votes
5answers
146 views
Getting a typedef of a template parameter, or failing that, getting the type itself
I am attempting to get the type pointed to by a typedef from a class (the ValueType typedef) that I defined. However, when this fails, I want it to return the type that is given (for example if I ...
1
vote
2answers
99 views
using SFINAE to change function called in a class depending on type of class template parameter
I have a templated class that can take either a scalar, or an indexed type, and I would like to call a different version of a function depending on what type it is:
template <typename Ta, typename ...
11
votes
2answers
246 views
What is exactly the “immediate context” mentioned in the C++11 Standard for which SFINAE applies?
Paragraph 14.8.2/8 of the C++11 Standard specifies the conditions under which a substitution failure shall or shall not result in a "hard" compilation error (thereby causing compilation to fail) or in ...
8
votes
1answer
179 views
Do non-dependent default template arguments of function templates allow for SFINAE?
With "non-dependent" here I mean "non-dependent on any other template arguments of that specific function template".
While answering this question, I thought I found the answer, but according to ...
7
votes
1answer
192 views
Detecting constexpr with SFINAE
I'm working on upgrading some C++ code to take advantage of the new functionality in C++11. I have a trait class with a few functions returning fundamental types which would most of the time, but not ...
1
vote
1answer
90 views
add compile-error messages to SFINAE macro
I'm playing around with SFINAE, but I'm trying to get some meaningful compiler-error information while dealing with macro-generated code. I used THIS answer to get the following running:
(I want to ...
4
votes
2answers
136 views
how check for member operator(type)? [duplicate]
Suppose I have types bar and foo. How can I construct a template class has_call_with_arg<> such that has_call_with_arg<bar,foo>::value is true if and only if
bar b;
foo f;
b(f);
would ...
1
vote
3answers
65 views
How To Convert Templated Function Overloads to Partial-Specialized Templated Class Static Methods?
I have several functions that I want to specialize based on type qualities, such as "character, signed-integer, unsigned-integer, floating-point, pointer"; using type_traits seems like the way to do ...
2
votes
1answer
71 views
idiomatic fallbacks in expression sfinae
Expression SFINAE is a very handy way to write several alternative functions to do the same thing, and pick the best one which compiles. You mention the critical expression(s) in the function ...
1
vote
1answer
109 views
enable_if + type template, no SFINAE (enable_if_c without boost ?)
I understand from reading various posts that the following is not supposed to compile.
#include <type_traits>
#include <iostream>
template <bool is_constant> struct A {
// Need ...
2
votes
2answers
91 views
decltype throwing errors on template methods that aren't generating code
I'm trying to create a sort of wrapper class that forwards all operators to its contained object, to try and make it able to "pretend" to be the contained object. The code I'd like to write looks ...
3
votes
1answer
114 views
conditional (SFINAE) override
I'm trying to do this:
struct A
{
virtual int f() const { return 0; }
};
template <typename T>
struct B : A
{
template <typename U = T,
typename std::enable_if<...some condition ...
4
votes
2answers
231 views
How to use sfinae for selecting constructors?
In template meta programming, one can use SFINAE on the return type to choose a certain template member function, i.e.
template<int N> struct A {
int sum() const noexcept
{ return ...
19
votes
2answers
923 views
Why to avoid std::enable_if in function signatures
Scott Meyers posted content and status of his next book EC++11.
He wrote that one item in the book could be "Avoid std::enable_if in function signatures".
std::enable_if can be used as a function ...
2
votes
1answer
127 views
how to SFINAE for enabling member function returning `auto`
In template meta programming, one can use SFINAE on the return type to choose a certain template member function, i.e.
template<int N> struct A {
int sum() const noexcept
{ return ...
2
votes
3answers
157 views
Is it possible to write c++ template/macros to check whether two functions have the same signatures
Is it possible to write c++ template/macros to check whether two functions have the same signatures (return type and arguments list) ?
Here's a simple example of how I want to use it:
int foo(const ...
1
vote
1answer
119 views
Detecting whether something is (boost) range with SFINAE
For logging code, I would like to detect whether given argument to a template function can be iterated over using the tools from Boost.Range or not. Obviously I need to instantiate different code ...
2
votes
0answers
79 views
Why SFINAE doesnt work here
I want to implement static check to find out is type constructible:
#include <iostream>
template<typename T>
struct IsConstr
{
typedef char TrueType;
typedef struct{char a[2];} ...
2
votes
1answer
133 views
Substitution failure is sometimes an error?
The following code snipplet tries to implement a 'std::is_constructible<A, int>':
#include <type_traits>
struct A {
// A(int);
};
template< typename T >
struct cstr_int
{
...
2
votes
2answers
103 views
Specialize template function on presence or absence of POD structure member in argument type
Given POD structures of the general form
struct case_0 { const char *foo; };
struct case_1i { const char *foo; int v0; };
struct case_1d { const char *foo; ...
3
votes
1answer
97 views
SFINAE example not clear
http://en.wikipedia.org/wiki/Substitution_failure_is_not_an_error
#include <iostream>
template <typename T>
struct has_typedef_foobar {
// Types "yes" and "no" are guaranteed to have ...
9
votes
3answers
232 views
How to extract the highest-indexed specialization from a structure?
I'm trying to do some template metaprogramming and I'm finding the need to "extract" the highest index of a specialization of some structure in some type.
For example, if I have some types:
struct A
...
3
votes
1answer
88 views
SFINAE Member Pass through
I was wondering if it was possible to create a class that would serve as a combination between std::enable_if and a SFINAE member detector.
class foo
{
public:
int bar;
};
template <class ...
4
votes
2answers
131 views
Is it possible to detect the constness of a class' method using SFINAE?
Consider this struct:
struct foo {
void dummy() const {}
};
Is it possible to detect the constness of this method using SFINAE?
For example, I would like to capture this property in a trait that ...
4
votes
3answers
163 views
Why compile error with enable_if
Why this does not compile with gcc48 and clang32?
#include <type_traits>
template <int N>
struct S {
template<class T>
typename std::enable_if<N==1, int>::type
...


