Search⌘ K
AI Features

Introduction

Learn about C++20 coroutines by exploring their theory, usage, and performance. Understand stackful versus stackless coroutines, how C++ implements these features, and how to use co_await, co_yield, and co_return. Discover how to create abstractions for lazy generators and write clearer, composable coroutine-based components.

We'll cover the following...

Computing has become a world of waiting, and we need ...