Generators v Coroutines¶
TBD
Generators¶
- Implements Iterator
- Generators yes
- Coroutines no
- Can be used with a
for
loop - Have send, throw, close methods
Coroutines¶
- Implements Awaitable
- Can be used with an event loop
- Have send, throw, close methods
Last update:
2022-09-13
Created: 2022-09-13
Created: 2022-09-13