This crate provides extensions for ordered slices.

Build Status Latest Version

Licensed under APACHE-2.

Documentation

https://docs.rs/ordslice

Installation

This crate works with Cargo and is on crates.io. Add it to your Cargo.toml:

toml [dependencies] ordslice = "1"

and augment slices by using its Ext trait:

```rust extern crate ordslice;

use ordslice::Ext; ```

Now you can enjoy super fast lower_bound, upper_bound, and equal_range.

Why isn't this part of the standard library?

Worry not, work is on the way: