Rust's standard library includes a number of very useful data structures called collections. A collection is something that holds zero or more elements in some fashion that allows you to enumerate those elements, add or remove elements, find them and so forth. Rust's collections can be grouped into four major categories: Sequences Maps Sets Misc Sequences […]

Read more of this post