I am studying SFINAE (replacement failure - no) I found an example of this on the site,
template<typename T> class is_class { typedef char yes[1]; typedef char no [2]; template<typename C> static yes& test(int C::*);
I found a new int C::* signature on line 5. At first I thought it was operator* , but I suppose this is wrong. Please tell me what it is.
c ++
mora
source share