|
|
|
|
|
by enneff
1066 days ago
|
|
What language change are you talking about? This is just a proposed construct to regularise and make efficient something people already do (as you says with “state”). I’ve used iterators similar to what’s described in this article to avoid allocations in critical code paths, but this would make those much less awkward to use (particularly with the upcoming range iterator language change). |
|
> func Pull[V any](push func(yield func(V) bool)) (pull func() (V, bool), stop func()) {
> copush := func(more bool, yield func(V) bool) V {
The main power of Go to me was always quickly being able to read and understand code. This type of coding has a lot of cognitive load to a reader, I feel.