superslice 1.0.0

Extensions for slices
Documentation
  • Coverage
  • 88.89%
    16 out of 18 items documented15 out of 17 items with examples
  • Size
  • Source code size: 38.77 kB This is the summed size of all the files inside the crates.io package for this release.
  • Documentation size: 274.02 kB This is the summed size of all files generated by rustdoc for all configured targets
  • Ø build duration
  • this release: 8s Average build duration of successful builds.
  • all releases: 8s Average build duration of successful builds in releases after 2024-10-23.
  • Links
  • Homepage
  • alkis/superslice-rs
    28 5 2
  • crates.io
  • Dependencies
  • Versions
  • Owners
  • alkis

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: