2 releases (1 stable)

Uses old Rust 2015

1.0.0 Feb 7, 2019
0.1.0 Feb 9, 2018

#2 in #ordered

Download history 2594/week @ 2023-01-25 2478/week @ 2023-02-01 1642/week @ 2023-02-08 2141/week @ 2023-02-15 2087/week @ 2023-02-22 1700/week @ 2023-03-01 2055/week @ 2023-03-08 2090/week @ 2023-03-15 2049/week @ 2023-03-22 2156/week @ 2023-03-29 1951/week @ 2023-04-05 1914/week @ 2023-04-12 2314/week @ 2023-04-19 2355/week @ 2023-04-26 2020/week @ 2023-05-03 1439/week @ 2023-05-10

8,388 downloads per month
Used in 39 crates (15 directly)

Apache-2.0

23KB
308 lines

This crate provides extensions for slices.

Build Status Latest Version

Licensed under APACHE-2.

Documentation

https://docs.rs/superslice

Installation

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

[dependencies]
superslice = "1"

and augment slices by using its Ext trait:

extern crate superslice;

use superslice::*;

Now you can enjoy high performance of common algorithms on slices:

  • lower_bound
  • upper_bound
  • equal_range

Why isn't this part of the standard library?

Worry not, work is on the way:

No runtime deps