From a503d24d4e0c3e64318464787e5c1f8c931a887a Mon Sep 17 00:00:00 2001 From: Bradlee Speice Date: Thu, 24 Jan 2019 23:04:27 -0500 Subject: [PATCH] One other question that I want to answer --- _drafts/understanding-allocations-in-rust.md | 1 + 1 file changed, 1 insertion(+) diff --git a/_drafts/understanding-allocations-in-rust.md b/_drafts/understanding-allocations-in-rust.md index 4968868..32e4786 100644 --- a/_drafts/understanding-allocations-in-rust.md +++ b/_drafts/understanding-allocations-in-rust.md @@ -570,6 +570,7 @@ Questions: 6. How can you use the heap well? - Know when collections resizing happens - Use `Borrow` to abstract over Pointer/Box/Rc/Arc/CoW +7. How expensive is move? Vs. C++ std::move? # Compiler Optimizations Make Everything Complicated