In order to increase fluency in a programming language, one has to read a lot of it. But how can you read a lot of it if you don't know what it means?
In this article, instead of focusing on one or two concepts, I'll try to go through as many Rust snippet... (more…)
Read more »
unofficial language server for gren, in rust . Contribute to lue-bird/gren-language-server-unofficial development by creating an account on GitHub. (more…)
Read more »
Rust traits have the neat property where you can use them either as generic bounds or as dynamic dispatch, with the &dyn MyTrait syntax. The latter is necessary in heterogeneous scenarios, where you want to use multiple concrete types together that al... (more…)
Read more »