Come è la seguente un'implementazione per std::is_function ?
template<class T>
struct is_function : std::integral_constant<
bool,
!std::is_const<const T>::value && !std::is_reference<T>::value
> {};
(a partire dal riferimento CPP )
Mi sembra che intsarebbe una funzione in base a questa definizione. Cosa mi sto perdendo?
!is_constparte.