Move Vec chapters into the subdir

pull/282/head
Yuki Okushi 4 years ago
parent 2e159b0d30
commit 04616a672b
No known key found for this signature in database
GPG Key ID: DABA5B072961C18A

@ -6,5 +6,20 @@ description = "The Dark Arts of Advanced and Unsafe Rust Programming"
[output.html]
git-repository-url = "https://github.com/rust-lang/nomicon"
[output.html.redirect]
# Vec-related chapters.
"/vec-alloc.html" = "/vec/vec-alloc.html"
"/vec-dealloc.html" = "/vec/vec-dealloc.html"
"/vec-deref.html" = "/vec/vec-deref.html"
"/vec-drain.html" = "/vec/vec-drain.html"
"/vec-final.html" = "/vec/vec-final.html"
"/vec-insert-remove.html" = "/vec/vec-insert-remove.html"
"/vec-into-iter.html" = "/vec/vec-into-iter.html"
"/vec-layout.html" = "/vec/vec-layout.html"
"/vec-push-pop.html" = "/vec/vec-push-pop.html"
"/vec-raw.html" = "/vec/vec-raw.html"
"/vec-zsts.html" = "/vec/vec-zsts.html"
"/vec.html" = "/vec/vec.html"
[rust]
edition = "2018"

@ -42,18 +42,18 @@
* [Races](races.md)
* [Send and Sync](send-and-sync.md)
* [Atomics](atomics.md)
* [Implementing Vec](vec.md)
* [Layout](vec-layout.md)
* [Allocating](vec-alloc.md)
* [Push and Pop](vec-push-pop.md)
* [Deallocating](vec-dealloc.md)
* [Deref](vec-deref.md)
* [Insert and Remove](vec-insert-remove.md)
* [IntoIter](vec-into-iter.md)
* [RawVec](vec-raw.md)
* [Drain](vec-drain.md)
* [Handling Zero-Sized Types](vec-zsts.md)
* [Final Code](vec-final.md)
* [Implementing Vec](./vec/vec.md)
* [Layout](./vec/vec-layout.md)
* [Allocating](./vec/vec-alloc.md)
* [Push and Pop](./vec/vec-push-pop.md)
* [Deallocating](./vec/vec-dealloc.md)
* [Deref](./vec/vec-deref.md)
* [Insert and Remove](./vec/vec-insert-remove.md)
* [IntoIter](./vec/vec-into-iter.md)
* [RawVec](./vec/vec-raw.md)
* [Drain](./vec/vec-drain.md)
* [Handling Zero-Sized Types](./vec/vec-zsts.md)
* [Final Code](./vec/vec-final.md)
* [Implementing Arc and Mutex](arc-and-mutex.md)
* [Arc](arc.md)
* [Layout](arc-layout.md)

Loading…
Cancel
Save