Discovering self-referential structs – Coroutines, Self-Referential Structs, and Pinning

What happened is that we created a self-referential struct, initialized it so that it took a pointer to itself, and then moved it. Let’s take a closer look: You’ve now

Read More

Improving our example 3 – this is… not… good… – Coroutines, Self-Referential Structs, and Pinning

Pretend you haven’t read this section title and enjoy the fact that our previous example compiled and showed the correct result. I think our coroutine implementation is so good now

Read More

Improving our base example – Coroutines, Self-Referential Structs, and Pinning

We want to see how we can improve our state machine so that it allows us to hold variables across wait points. To do that, we need to store them

Read More

Improving our example 1 – variables – Coroutines, Self-Referential Structs, and Pinning

So, let’s recap what we have at this point by continuing where we left off in the previous chapter. We have the following: It’s not that bad – we might

Read More

Technical requirements – Coroutines, Self-Referential Structs, and Pinning

In this chapter, we’ll start by improving our coroutines by adding the ability to store variables across state changes. We’ll see how this leads to our coroutines needing to take

Read More