Jak wygląda implementacja std::is_function
?
template<class T>
struct is_function : std::integral_constant<
bool,
!std::is_const<const T>::value && !std::is_reference<T>::value
> {};
(z referencji CPP )
Wydaje mi się, int
że w tej definicji byłaby funkcja. czego mi brakuje?
!is_const
części.