Skip to content

Commit

Permalink
Append clarification to C++ templates introduction
Browse files Browse the repository at this point in the history
  • Loading branch information
methylDragon committed Jul 11, 2019
1 parent e7d1a9d commit cb95f0c
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions C++/06 C++ - Templates.md
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,10 @@ So we spent the previous section talking about a couple of uses of the STL libra

> **Templates** are powerful features of **C++** which allows you to write generic programs. In simple terms, you can create a single function or a class to work with different data types using **templates**. **Templates** are often used in larger codebase for the purpose of code reusability and flexibility of the programs.
- **Functions** operate on **values and references**!

- **Metafunctions** (like those for templates) operate on **types** in addition to **values and references**!



## 2. C++ Templates Reference <a name="2"></a>
Expand Down

0 comments on commit cb95f0c

Please sign in to comment.