Newest questions tagged c++ - Stack Overflow
How to check if a class has a templated member function using SFINAE in C++ 14 [duplicate]
I have a class class ArbitraryClass { public: template< typename T > void Serialize( T & obj ) { } }; I have other code that needs to check whether it's been handed a class, like the one above, that has
View original source