I’ve used a lot of programming languages in my life, so I went through my archives and created a little timeline — mostly for fun and for my own reference.
| Website | https://majda.cz |
| Website | https://majda.cz |
Baví mě, že (zřejmě) tréninkové lety policejních vrtulníků často vypadají jako výlet po českých hradech a zámcích. Schválně, kolik jich tady z hlavy dokážete identifikovat?
(Zachyceno náhodně pár týdnů zpátky.)
Rust has peekable iterators in the standard library, nice!
Peekable iterators allow you to look at the next value without actually consuming it, which is great e.g. for writing parsers and lexical scanners. In Rust, this functionality is just a method call away.