Playback speed
×
Share post
Share post at current time
0:00
/
0:00

Paid episode

The full episode is only available to paid subscribers of Low Latency Trading Insights

Reverse Engineering C++20 Coroutines

And why you should be using them

Godbolt: https://godbolt.org/z/eWh35cTb8

Code:

#include <coroutine>
#include <iostream>

struct Y {
    bool await_ready() noexcept { 
        puts("await_ready:1");
        return true; 
    };
    v…

The full video is for paid subscribers

Low Latency Trading Insights
Low Latency Trading Insights
Authors
Henrique Bucher