Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

SFINAE: std::enable_if as function argument

So, I'm following the example set by the code somewhere on this web page: http://eli.thegreenplace.net/2014/sfinae-and-enable_if/

Here's what I have:

template<typename T>
void fun(const typename std::enable_if_t<std::is_integral<T>::value, T>& val) {
    std::cout << "fun<int>";
}

template<typename T>
void fun(const typename std::enable_if_t<std::is_floating_point<T>::value, T>& val) {
    std::cout << "fun<float>";
}

int main()
{
    fun(4);
    fun(4.4);
}

This way I would have to write:

fun<int>(4);
fun<double>(4.4);

How would I avoid that?

Compiler complains that it can't deduce the parameter T.

like image 780
DeiDei Avatar asked Dec 19 '15 09:12

DeiDei


People also ask

What is std :: Enable_if?

std::enable_if can be used in many forms, including: as an additional function argument (not applicable to operator overloads) as a return type (not applicable to constructors and destructors) as a class template or function template parameter.

When to use SFINAE?

This rule applies during overload resolution of function templates: When substituting the explicitly specified or deduced type for the template parameter fails, the specialization is discarded from the overload set instead of causing a compile error. This feature is used in template metaprogramming.

What is meant by SFINAE?

Substitution failure is not an error (SFINAE) refers to a situation in C++ where an invalid substitution of template parameters is not in itself an error. David Vandevoorde first introduced the acronym SFINAE to describe related programming techniques.


1 Answers

The examples are wrong, since T is in a non-deduced context. Unless you call the function like fun<int>(4);, the code won't compile, but this is probably not what the author intended to show.

The correct usage would be to allow T to be deduced by the compiler, and to place a SFINAE condition elsewhere, e.g., in a return type syntax:

template <typename T>
auto fun(const T& val)
    -> typename std::enable_if<std::is_integral<T>::value>::type
{
    std::cout << "fun<int>";
}

template <typename T>
auto fun(const T& val)
    -> typename std::enable_if<std::is_floating_point<T>::value>::type
{
    std::cout << "fun<float>";
}

DEMO

Also, the typenames in your code contradict your usage of std::enable_if_t.

Use either c++11:

typename std::enable_if<...>::type

or c++14:

std::enable_if_t<...>

How would that work in a constructor which doesn't have a return type though?

In case of constructors, the SFINAE condition can be hidden in a template parameter list:

struct A
{    
    template <typename T,
              typename std::enable_if<std::is_integral<T>::value, int>::type = 0>
    A(const T& val)
    {
        std::cout << "A<int>";
    }

    template <typename T,
              typename std::enable_if<std::is_floating_point<T>::value, int>::type = 0>
    A(const T& val)
    {
        std::cout << "A<float>";
    }
};

DEMO 2

Alternatively, in c++20, you can use concepts for that:

A(const std::integral auto& val);

A(const std::floating_point auto& val);
like image 157
Piotr Skotnicki Avatar answered Oct 23 '22 15:10

Piotr Skotnicki