Function that takes one explicit type

96 Views Asked by At

How can I make a function that accepts, for example, a size_t but does NOT accept an int or any other implicitly convertible type?

2

There are 2 best solutions below

1
On BEST ANSWER

Use overload:

template <typename T> void foo(T) = delete;

void foo(std::size_t t) {
    // ...    
}
3
On
#include <type_traits>
#include <cstddef>

template <typename..., typename T, std::enable_if_t<std::is_same_v<T, std::size_t>>*...>
void f(T x) {}