2 releases

Uses old Rust 2015

0.1.1 May 31, 2015
0.1.0 May 18, 2015

#23 in #hamming

MIT license

11KB
222 lines

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.


lib.rs:

Code for calculating hamming distances and bitwise hamming distances

No runtime deps