...

/

Template Code Simplification

Template Code Simplification

The lesson highlights the updates used for Templates Simplification for picking one implementation of Algorithm.

We'll cover the following...

Before C++17 if you had several versions of an algorithm - depending on the type requirements - y​ou could use SFINAE or tag dispatching to generate a dedicated overload resolution set.

For ...