SortedList

Build Status

Data structure similar to SortedList found in .NET for rust. Naive implementation based on Vec<K> and Vec<V>. Same key can be mapped to multiple values, and the values are stored in insertion order.

Unsupported:

Cargo.toml

[dependencies] sorted-list = "0.1"

or:

[dependencies] sorted-list = { git = "https://github.com/koivunej/sorted-list.git" }

Documentation

Probably soon at docs.rs.

License

MIT.