# SortedList [![Build Status](https://travis-ci.org/koivunej/sorted-list.svg?branch=master)](https://travis-ci.org/koivunej/sorted-list) [![Docs](https://docs.rs/crate/sorted-list)](https://docs.rs/sorted-list/badge.svg) Data structure similar to [SortedList found in .NET](https://msdn.microsoft.com/en-us/library/ms132319(v=vs.110).aspx) for rust. Naive implementation based on `Vec` and `Vec`. Same key can be mapped to multiple values, and the values are stored in insertion order. Unsupported: * deletion * ~range queries~ (requires feature = "nightly" and a nightly compiler) ## Cargo.toml ``` [dependencies] sorted-list = "0.1" ``` or: ``` [dependencies] sorted-list = { git = "https://github.com/koivunej/sorted-list.git" } ``` ## License MIT.