Move the files to final resting location

This commit is contained in:
Bradlee Speice 2019-02-09 23:31:11 -05:00
parent 543e4253cc
commit e9099d191e
No known key found for this signature in database
GPG Key ID: 48BEA6257238E620
6 changed files with 12 additions and 9 deletions

View File

@ -29,9 +29,9 @@ an understanding of the different memory types Rust makes use of, then summarize
section at the end for easy future citation. To that end, a table of contents is in order:
- Foreword
- [The Whole World: Global Memory Usage](/2019/02/the-whole-world)
- [Stacking Up: Fixed Memory](/2019/02/stacking-up)
- [A Heaping Helping: Dynamic Memory](/2019/02/a-heaping-helping)
- [Global Memory Usage: The Whole World](/2019/02/the-whole-world)
- [Fixed Memory: Stacking Up](/2019/02/stacking-up)
- [Dynamic Memory: A Heaping Helping](/2019/02/a-heaping-helping)
- [Compiler Optimizations: What It's Done For You Lately](/2019/02/compiler-optimizations)
- [Summary: What Are the Rules?](/2019/02/summary)

View File

@ -1,6 +1,6 @@
---
layout: post
title: "The Whole World: Global Memory Usage"
title: "Global Memory Usage: The Whole World"
description: "Static considered slightly less harmful."
category:
tags: [rust, understanding-allocations]
@ -292,4 +292,3 @@ fn main() {
}
```
-- [Rust Playground](https://play.rust-lang.org/?version=stable&mode=debug&edition=2018&gist=3ba003a981a7ed7400240caadd384d59)

View File

@ -1,6 +1,6 @@
---
layout: post
title: "Stacking Up: Fixed Memory"
title: "Fixed Memory: Stacking Up"
description: "We don't need no allocator."
category:
tags: [rust, understanding-allocations]

View File

@ -1,6 +1,6 @@
---
layout: post
title: "A Heaping Helping: Dynamic Memory"
title: "Dynamic Memory: A Heaping Helping"
description: "The reason Rust exists."
category:
tags: [rust, understanding-allocations]

View File

@ -37,5 +37,9 @@ the memory model in Rust:
- `const` is a fixed value; the compiler is allowed to copy it wherever useful.
- `static` is a fixed reference; the compiler will guarantee it is unique.
And if you've read through both the posts and now the summary: thanks. I've enjoyed
the process that went into writing this, and I hope it's valuable to you as well.
---
And if you've read through this series: thanks. I've enjoyed the process that went
into writing this, both in building new tools and forcing myself to understand
the content well enough to explain it. I hope this is valuable as a reference to you
as well.