book: chapter name refinement

This commit is contained in:
Changkun Ou
2019-07-19 12:32:34 +02:00
parent 115827f98c
commit 86d84d25ca
7 changed files with 21 additions and 27 deletions

View File

@@ -6,7 +6,7 @@ order: 3
# Chapter 03: Language Runtime Enhancements
[Table of Content](./toc.md) | [Previous Chapter](./02-usability.md) | [Next Chapter: Standard Library: Containers](./04-containers.md)
[Table of Content](./toc.md) | [Previous Chapter](./02-usability.md) | [Next Chapter: Containers](./04-containers.md)
## Further Readings

View File

@@ -1,12 +1,12 @@
---
title: "Chapter 04 Standard Library: Containers"
title: "Chapter 04 Containers"
type: book-en-us
order: 4
---
# Chapter 04 Standard Library: Containers
# Chapter 04 Containers
[Table of Content](./toc.md) | [Previous Chapter](./03-runtime.md) | [Next Chapter: Standard Library: Pointers](./05-pointers.md)
[Table of Content](./toc.md) | [Previous Chapter](./03-runtime.md) | [Next Chapter: Smart Pointers and Memory Management](./05-pointers.md)
## Further Readings

View File

@@ -1,10 +1,10 @@
---
title: "Chapter 05 Standard Library: Pointers"
title: "Chapter 05 Smart Pointers and Memory Management"
type: book-en-us
order: 5
---
# Chapter 05 Standard Library: Pointers
# Chapter 05 Smart Pointers and Memory Management
[Table of Content](./toc.md) | [Previous Chapter](./04-containers.md) | [Next Chapter: Regular Expression](./06-regex.md)

View File

@@ -55,7 +55,7 @@
+ rvalue reference & lvalue reference
+ Move semantics
+ Perfect forwarding
- [**Chapter 04 Standard Library: Containers**](./04-containers.md)
- [**Chapter 04 Containers**](./04-containers.md)
+ 4.1 `std::array` and `std::forward_list`
+ 4.2 Unordered containers
+ `std::unordered_set`
@@ -64,11 +64,11 @@
+ basic operation
+ runtime indexing
+ merge and iteration
- [**Chapter 05 Standard Library: Pointers**](./05-pointers.md)
- [**Chapter 05 Smart Pointers and Memory Management**](./05-pointers.md)
+ 5.1 RAII and reference counting
+ 5.2 `std::shared_ptr`
+ 5.3 `std::unique_ptr`
- [**Chapter 06 Standard Library: Regular Expression**](./06-regex.md)
- [**Chapter 06 Regular Expression**](./06-regex.md)
+ 6.1 Introduction
+ Ordinary characters
+ Special characters