How does `void_t` work
This thread and the thread SFINAE: Understanding void_t and detect_if saved me. I want to demonstrate the behavior by some examples:
The tool: cppinsights
To test the implmentation by types of float and following types:
struct A {
using type = int;
};
struct B{
using type = void;
}
Tested by
auto f = has_type_member<float>::value;
auto a = has_type_member<A>::value;
auto b = has_type_member<B>::value;
standard implmentataion
From this std::void_t reference
#include <type_traits>
// primary template handles types that have no nested ::type member:
template< class, class = int >
struct has_type_member : std::false_type { };
// specialization recognizes types that do have a nested ::type member:
template< class T >
struct has_type_member<T, std::void_t<typename T::type>> : std::true_type { };
Output
bool f = false;
bool a = true;
bool b = true;
bool x = has_type_member<A, int>::value; //x = false;
case 1
#include <type_traits>
// primary template handles types that have no nested ::type member:
template< class, class = int >
struct has_type_member : std::false_type { };
template< class T >
struct has_type_member<T, void> : std::true_type { };
// specialization recognizes types that do have a nested ::type member:
template< class T >
struct has_type_member<T, std::void_t<typename T::type>> : std::true_type { };
Output
/home/insights/insights.cpp:14:8: error: redefinition of 'has_type_member<T, std::void_t<typename T::type>>'
struct has_type_member<T, std::void_t<typename T::type>> : std::true_type { };
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/home/insights/insights.cpp:8:8: note: previous definition is here
struct has_type_member<T, void>: std::true_type {};
^
1 error generated.
Error while processing /home/insights/insights.cpp.
So, has_type_member<T, std::void_t<typename T::type>>
defined a specialization of has_type_member
and the signature is exactly has_type_member<T, void>
.
case 2
#include <type_traits>
template< class, class = void >
struct has_type_member : std::false_type { };
// specialize 2nd type as void
template< class T>
struct has_type_member<T, void> : std::true_type { };
Output:
bool f = true;
bool a = true;
bool b = true;
This case shows that the compiler:
- Wanted to find a match for
has_type_member<float>
- Found out that the template requires 2 arguments, then filled the 2nd argument by default arguments. The struct was like
has_type_member<float, void>
- Found a specialization of this signature and got the value from
std::true_type
case 3
#include <type_traits>
template< class, class = void >
struct has_type_member : std::false_type { };
template<class T>
struct has_type_member<T, typename T::type>: std::true_type {};
Output:
bool f = false;
bool a = false;
bool b = true;
case f
has_type_member<float>
was completed intohas_type_member<float, void>
.- Then the compiler tried
typename float::type
and failed. - The primary template picked.
case a
has_type_member<A>
was completed intohas_type_member<A, void>
- Then compiler tried
has_type_member<A, typename A::type>
and found out it washas_type_member<A, int>
- Compiler decided it was not a specilization of
has_type_member<A, void>
- Then primary template picked.
case b
has_type_member<B>
was completed intohas_type_member<B, void>
.- Then compiler tried
has_type_member<B, typename B::type>
and found out it washas_type_member<B, void>
. - Compiler decided it was a specilization of
has_type_member<B, void>
true_type
picked.
case 4
#include <type_traits>
//int as default 2nd argument
template< class, class = int >
struct has_type_member : std::false_type { };
template<class T>
struct has_type_member<T, std::void<typename T::type>>: std::true_type {};
Output:
bool f = false;
bool a = false;
bool b = false;
The has_type_member<T>
is of type has_type_member<T, int>
for all 3 variables, while the true_type
has signature as has_type_member<T, void>
if it's valid.
Conclusion
So, the std::void_t
:
- Check if
T::type
valid. - Provides a specialization of primary template if only one template argument provided.
1. Primary Class Template
When you write has_member<A>::value
, the compiler looks up the name has_member
and finds the primary class template, that is, this declaration:
template< class , class = void >
struct has_member;
(In the OP, that's written as a definition.)
The template argument list <A>
is compared to the template parameter list of this primary template. Since the primary template has two parameters, but you only supplied one, the remaining parameter is defaulted to the default template argument: void
. It's as if you had written has_member<A, void>::value
.
2. Specialized Class Template
Now, the template parameter list is compared against any specializations of the template has_member
. Only if no specialization matches, the definition of the primary template is used as a fall-back. So the partial specialization is taken into account:
template< class T >
struct has_member< T , void_t< decltype( T::member ) > > : true_type
{ };
The compiler tries to match the template arguments A, void
with the patterns defined in the partial specialization: T
and void_t<..>
one by one. First, template argument deduction is performed. The partial specialization above is still a template with template-parameters that need to be "filled" by arguments.
The first pattern T
, allows the compiler to deduce the template-parameter T
. This is a trivial deduction, but consider a pattern like T const&
, where we could still deduce T
. For the pattern T
and the template argument A
, we deduce T
to be A
.
In the second pattern void_t< decltype( T::member ) >
, the template-parameter T
appears in a context where it cannot be deduced from any template argument.
There are two reasons for this:
The expression inside
decltype
is explicitly excluded from template argument deduction. I guess this is because it can be arbitrarily complex.Even if we used a pattern without
decltype
likevoid_t< T >
, then the deduction ofT
happens on the resolved alias template. That is, we resolve the alias template and later try to deduce the typeT
from the resulting pattern. The resulting pattern, however, isvoid
, which is not dependent onT
and therefore does not allow us to find a specific type forT
. This is similar to the mathematical problem of trying to invert a constant function (in the mathematical sense of those terms).
Template argument deduction is finished(*), now the deduced template arguments are substituted. This creates a specialization that looks like this:
template<>
struct has_member< A, void_t< decltype( A::member ) > > : true_type
{ };
The type void_t< decltype( A::member ) >
can now be evaluated. It is well-formed after substitution, hence, no Substitution Failure occurs. We get:
template<>
struct has_member<A, void> : true_type
{ };
3. Choice
Now, we can compare the template parameter list of this specialization with the template arguments supplied to the original has_member<A>::value
. Both types match exactly, so this partial specialization is chosen.
On the other hand, when we define the template as:
template< class , class = int > // <-- int here instead of void
struct has_member : false_type
{ };
template< class T >
struct has_member< T , void_t< decltype( T::member ) > > : true_type
{ };
We end up with the same specialization:
template<>
struct has_member<A, void> : true_type
{ };
but our template argument list for has_member<A>::value
now is <A, int>
. The arguments do not match the parameters of the specialization, and the primary template is chosen as a fall-back.
(*) The Standard, IMHO confusingly, includes the substitution process and the matching of explicitly specified template arguments in the template argument deduction process. For example (post-N4296) [temp.class.spec.match]/2:
A partial specialization matches a given actual template argument list if the template arguments of the partial specialization can be deduced from the actual template argument list.
But this does not just mean that all template-parameters of the partial specialization have to be deduced; it also means that substitution must succeed and (as it seems?) the template arguments have to match the (substituted) template parameters of the partial specialization. Note that I'm not completely aware of where the Standard specifies the comparison between the substituted argument list and the supplied argument list.
// specialized as has_member< T , void > or discarded (sfinae)
template<class T>
struct has_member<T , void_t<decltype(T::member)>> : true_type
{ };
That above specialization exists only when it is well formed, so when decltype( T::member )
is valid and not ambiguous.
the specialization is so for has_member<T , void>
as state in the comment.
When you write has_member<A>
, it is has_member<A, void>
because of default template argument.
And we have specialization for has_member<A, void>
(so inherit from true_type
) but we don't have specialization for has_member<B, void>
(so we use the default definition : inherit from false_type
)