hash-index 0.1.1

Predictable hash indexing with a possible maximum value. Rust adaptation of watson/hash-index using Blake3
Documentation
  • Coverage
  • 0%
    0 out of 3 items documented0 out of 2 items with examples
  • Size
  • Source code size: 2.71 kB This is the summed size of all the files inside the crates.io package for this release.
  • Documentation size: 251.73 kB This is the summed size of all files generated by rustdoc for all configured targets
  • Ø build duration
  • this release: 13s Average build duration of successful builds.
  • all releases: 13s Average build duration of successful builds in releases after 2024-10-23.
  • Links
  • jakeburden/hash-index
    0 0 1
  • crates.io
  • Dependencies
  • Versions
  • Owners
  • jakeburden

hash-index

Predictable hash indexing with a possible maximum value. Rust adaptation of watson/hash-index using Blake3

Usage

use hash_index;

let hash = hash_index::hash(b"foobar"); // 2857448067
let hash_with_max = hash_index::hash_with_max(b"foobar", 100); // 67

See Also