formulations, spelling and title chapter 3

This commit is contained in:
Carl Fredrik Samson
2020-12-22 19:55:00 +01:00
parent b085fdd966
commit e33b15af8b
2 changed files with 12 additions and 8 deletions

View File

@@ -1,11 +1,15 @@
# Get a mental model of how Futures and runtimes work # A mental model of how Futures and runtimes work
In this chapter we'll try to build a high level mental model of how Futures and The main goal in this part is to build a high level
runtimes work together. Just note that the code itself is "pseudo-rust" due to space mental model of how the different pieces we read about in the previos chapter
restrictions and clarity. The main goal in this part is to create a high level works toghether. I hope this will make it easier to understand what we just read
understanding to make it easier to learn. This is not the only way to model this about in the previous chapter and also explain why we take a deep dive into topics
since we're making assumtions on runtime specifics that can vary a great deal, like trait objects and generators in the next few chapters.
but it's the way I found it easiest to build upon.
This is not the only way to model this since we're making assumtions on runtime
specifics that can vary a great deal, but it's the way I found it easiest to
build upon. Finally, please note that the code itself is "pseudo-rust" due to
the need for brevity and clarity.
>Click on a page to open a larger view of it in a new tab. >Click on a page to open a larger view of it in a new tab.
> >

View File

@@ -4,7 +4,7 @@
- [Background information](./0_background_information.md) - [Background information](./0_background_information.md)
- [Futures in Rust](./1_futures_in_rust.md) - [Futures in Rust](./1_futures_in_rust.md)
- [A mental model for Futures](./2_a_mental_model_for_futures.md) - [A mental model of how Futures work](./2_a_mental_model_for_futures.md)
- [Waker and Context](./3_waker_context.md) - [Waker and Context](./3_waker_context.md)
- [Generators and async/await](./4_generators_async_await.md) - [Generators and async/await](./4_generators_async_await.md)
- [Pin](./5_pin.md) - [Pin](./5_pin.md)