Hacker News
new
|
past
|
comments
|
ask
|
show
|
jobs
|
submit
login
empath-nirvana
on Oct 23, 2023
|
parent
|
context
|
favorite
| on:
Generators are dead, long live coroutines, generat...
new syntax:
fn foo() -> impl Iterator<Item = u32> { gen { yield 42; for x in 3..6 { yield x } } }
Consider applying for YC's Summer 2026 batch! Applications are open till May 4
Guidelines
|
FAQ
|
Lists
|
API
|
Security
|
Legal
|
Apply to YC
|
Contact
Search:
fn foo() -> impl Iterator<Item = u32> { gen { yield 42; for x in 3..6 { yield x } } }