Wie ist das Folgende eine Implementierung für std::is_function
?
template<class T>
struct is_function : std::integral_constant<
bool,
!std::is_const<const T>::value && !std::is_reference<T>::value
> {};
(aus CPP-Referenz )
Mir scheint, eine int
wäre eine Funktion unter dieser Definition. Was vermisse ich?
!is_const
Teil.