3 releases (breaking)

Uses old Rust 2015

0.3.0 Feb 9, 2018
0.2.0 Dec 1, 2017
0.1.0 Nov 7, 2017

#2382 in Algorithms

Download history 608/week @ 2024-03-03 624/week @ 2024-03-10 519/week @ 2024-03-17 398/week @ 2024-03-24 578/week @ 2024-03-31 582/week @ 2024-04-07 512/week @ 2024-04-14 440/week @ 2024-04-21 378/week @ 2024-04-28 428/week @ 2024-05-05 263/week @ 2024-05-12 321/week @ 2024-05-19 270/week @ 2024-05-26 251/week @ 2024-06-02 320/week @ 2024-06-09 422/week @ 2024-06-16

1,279 downloads per month
Used in nb2nl

Apache-2.0

16KB
188 lines

This crate provides extensions for ordered slices.

Build Status Latest Version

Licensed under APACHE-2.

Deprecated

This crate is deprecated and replaced by superslice.

Documentation

https://docs.rs/ordslice

Installation

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

[dependencies]
ordslice = "1"

and augment slices by using its Ext trait:

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:

No runtime deps