Notebook C++
Notebook C++
Tips and Tricks with Templates
About the Book
This book is part of a series which is called Notebook C++. The idea is that most of us have some kind of rules about do's and don'ts or tips and tricks to keep in mind. It is probably one of the most frequent questions I get during training classes. I have such a list too. In this series, I will publish mine.
My idea is to create multiple short books (ok what is the number of pages required to call it a book or short?) about various topics. I currently plan to share tips about templates (this book), lambdas, and trap-like situations like dangling references. There will probably be more.
Why several short books and not a single large one? Simply to give you a choice. Maybe you are already fine with one topic but have an interest in tips for another topic. Why then by a large book where you need only a portion of it? Another thing is I personally like printed books. There I find smaller ones more comfortable when carrying them around like on a train or airplane. Plus, they are not that heavy then, which is also a plus.
Table of Contents
- Contents
- Notes by Standard at a Glance
- Notes belonging to C++11
- Notes belonging to C++17
- Notes belonging to C++20
- Tips and Tricks with Templates
- Note 1: Know the name
- Note 2: Templates can have type and non-type parameters
- Note 3: When to use
typename
, whenclass
- Note 4: The parts of a variadic template
- Note 5: There are no implicit conversions for template parameters
- Note 6: Alias template for clean TMP
- Note 7: Variable template for clean TMP
- Note 8: The trailing-return-type with
decltype
andvoid()
- Note 9: Use
declval
when you need to construct a type for testing during compile-time - Note 10: What
void_t
does - Note 11: Keep that array's size
- Note 12: There is no else if in C++
- Note 13: More useful than it appears:
always_false
- Note 14: Prefer
auto
as NTTP to reduce redundancy - Note 15: Block template argument deduction
- Note 16: Fold expressions and the comma operator
- Note 17: Poor men's fold expressions
- Note 18: From an array to a pack
- Note 19: From an array to a pack with templated lambda
- Note 20: Create objects in place for direct use
- Note 21: Guidelines for efficient use of templates
- Note 22: Put
enable_if
on the return type - Note 23:
enable_if
and how to disable a member function - Note 24: How to disable a special member function
- Acronyms
- Bibliography
- Index
The Leanpub 60-day 100% Happiness Guarantee
Within 60 days of purchase you can get a 100% refund on any Leanpub purchase, in two clicks.
See full terms
80% Royalties. Earn $16 on a $20 book.
We pay 80% royalties. That's not a typo: you earn $16 on a $20 sale. If we sell 5000 non-refunded copies of your book or course for $20, you'll earn $80,000.
(Yes, some authors have already earned much more than that on Leanpub.)
In fact, authors have earnedover $12 millionwriting, publishing and selling on Leanpub.
Learn more about writing on Leanpub
Free Updates. DRM Free.
If you buy a Leanpub book, you get free updates for as long as the author updates the book! Many authors use Leanpub to publish their books in-progress, while they are writing them. All readers get free updates, regardless of when they bought the book or how much they paid (including free).
Most Leanpub books are available in PDF (for computers) and EPUB (for phones, tablets and Kindle). The formats that a book includes are shown at the top right corner of this page.
Finally, Leanpub books don't have any DRM copy-protection nonsense, so you can easily read them on any supported device.
Learn more about Leanpub's ebook formats and where to read them