8 releases
Uses old Rust 2015
0.0.8 | Mar 28, 2015 |
---|---|
0.0.7 | Feb 6, 2015 |
0.0.6 | Jan 30, 2015 |
#38 in #collections
23 downloads per month
40KB
451 lines
sorted-collections-rs
A library providing useful extension traits and convenience methods for ordered collections in Rust. NOTE: This library is not currently in active development, and much of the functionality has been either obsoleted by or superseded by similar or identical functionality of the standard library, or soon will be. Please use that instead, at least until I find a better direction to take this.
Usage
Put this in your Cargo.toml
:
[dependencies]
sorted-collections = "*"
And this in your crate root:
extern crate "sorted-collections" as sorted_collections; // or whatever you want to import it as
lib.rs
:
sorted-collections-rs is a library providing useful extension traits and convenience methods for ordered collections in Rust.