Crates.io | rust_hamming_distance |
lib.rs | rust_hamming_distance |
version | 0.1.1 |
source | src |
created_at | 2015-05-18 10:00:34.903162 |
updated_at | 2015-12-11 23:56:40.231265 |
description | Hamming distances and bitwise hamming distances |
homepage | |
repository | https://github.com/SingingTree/rust_hamming_distance |
max_upload_size | |
id | 2140 |
size | 12,253 |
Hamming distance and bitwise hamming distance implementations in rust
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.