Are you familiar with it?
SFINAE: Substitution Failure is not an Error | Top-Up C++ [C++ #02]
by WolfSound
Summary of the video:
In this video, we are presenting SFINAE: Substitution Failure is not an Error, a feature or a characteristic of C++ related to templates. “Substitution failure is not an error” means that if the compiler fails to specialize a template with a given template argument list, it does not issue an error. It does when it cannot find any suitable function/class to be called/instantiated (either due to a lack of suitably declared functions/classes or an error during instantiation).
Add a Comment
Comments are closed.