Explore >> Select a destination


You are here

doadm-notes.blogspot.com
| | initialcommit.com
3.0 parsecs away

Travel
| | In this article, you will learn what iterators are, how you can use the next() function on iterators, and maximize your usage of the next() function.
| | will-keleher.com
4.7 parsecs away

Travel
| | Understanding why `zip(*[iter(s)]*n)` chunks an input `s` into `n` chunks is a good excuse to explore iterators, iterable unpacking, list multiplication, and the zip function.
| | domenic.me
3.9 parsecs away

Travel
| | A reference guide for JavaScript iterator and generator terminology, from back when they were just starting to see implementations in JavaScript engines.
| | tenthousandmeters.com
23.2 parsecs away

Travel
| Mark functions as async. Call them with await. All of a sudden, your program becomes asynchronous - it can do useful things while it waits for...