rust_hamming_distance 0.1.1

Hamming distances and bitwise hamming distances
Documentation
  • Coverage
  • 77.78%
    7 out of 9 items documented0 out of 4 items with examples
  • Size
  • Source code size: 12.41 kB This is the summed size of all the files inside the crates.io package for this release.
  • Documentation size: 1.5 MB This is the summed size of all files generated by rustdoc for all configured targets
  • Ø build duration
  • this release: 9s Average build duration of successful builds.
  • all releases: 9s Average build duration of successful builds in releases after 2024-10-23.
  • Links
  • Documentation
  • SingingTree/rust_hamming_distance
    2 0 0
  • crates.io
  • Dependencies
  • Versions
  • Owners
  • SingingTree

rust_hamming_distance

Hamming distance and bitwise hamming distance implementations in rust

Build Status

Documentation

Generalised implementations

Due to how type checking is done by the compiler (see for example RFCs: #586, #1053), more general implementations of the bitwise hamming traits, such as those on IntoIterators yielding u8s, cannot coexist with specific implementations, like those on u8. This can be worked around, but is not yet implemented at this stage.