ferrous-systems / rust-training

Learning materials for the Rust Training courses by Ferrous Systems
127 stars 16 forks source link

Update collections.md - simplified entry API example #140

Closed jonathanpallant closed 4 months ago

jonathanpallant commented 4 months ago

Simplify the entry API example, as the &'static str doesn't add value here, and the entry API isn't actually very useful when you have non-Copy owned keys (like String) because you are forced to heap-allocate the String even if the key already exists.