Is it possible to write a tester if a template-method with a given signature is defined?
The method is of following signature:
template<typename ReturnType>
ReturnType get(std::string) { return std::declval<ReturnType>(); }
I searched here but all I found were mechanism relying on automated template deduction (e.g. How to test if template function exists at compile time)