|
|
|
|
|
by chombier
1133 days ago
|
|
To compose generators I use `yield*` (or `yield from` in python) https://developer.mozilla.org/fr/docs/Web/JavaScript/Referen...* (note that last star is actually part of the link) The main drawback with this approach is that it is easy to blow the stack, but it is not too hard to implement trampolining on top of it (by yielding the continuation to a wrapper generator) To use the generator I send its inputs using `.next()` and obtain current state information, as shown on your library webpage. |
|