book: translation of ch04

Update #12
This commit is contained in:
Changkun Ou
2019-07-19 19:17:16 +02:00
parent bf6b09253b
commit 7776a59e97
9 changed files with 412 additions and 69 deletions

View File

@@ -56,13 +56,15 @@
+ Move semantics
+ Perfect forwarding
- [**Chapter 04 Containers**](./04-containers.md)
+ 4.1 `std::array` and `std::forward_list`
+ 4.1 Linear containers
+ `std::array`
+ `std::forward_list`
+ 4.2 Unordered containers
+ `std::unordered_set`
+ `std::unordered_map`
+ `std::unordered_set`
+ `std::unordered_map`
+ 4.3 Tuples `std::tuple`
+ basic operation
+ runtime indexing
+ runtime indexing `std::variant`
+ merge and iteration
- [**Chapter 05 Smart Pointers and Memory Management**](./05-pointers.md)
+ 5.1 RAII and reference counting