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

#2764 in Algorithms

Download history 111/week @ 2024-11-15 134/week @ 2024-11-22 152/week @ 2024-11-29 234/week @ 2024-12-06 210/week @ 2024-12-13 71/week @ 2024-12-20 43/week @ 2024-12-27 131/week @ 2025-01-03 215/week @ 2025-01-10 179/week @ 2025-01-17 135/week @ 2025-01-24 230/week @ 2025-01-31 339/week @ 2025-02-07 276/week @ 2025-02-14 364/week @ 2025-02-21 266/week @ 2025-02-28

1,306 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