Using C++ Templates to Write Functions and Classes
April 27, 2018
C++ Templates : Blueprints for Generic Classes and Functions
C++ Templates are a powerful feature within the C++ language that extends your capabilities within C++. Templates are a foundation of generic programming that lets you reuse your source code if you have multiple data types that you wish to pass instead of function overloading or rewrites.
Why use templates?
To avoid repeating…