The library is intended to provide a faster byte slice comparison than the standard library. Also raw string literals
b"like this"
are compareable this way. It also supports simd comparisons by enabling the feature simd_support
in the
Cargo.toml
.
```rust use fastcmp::Compare;
let vec = vec![1, 2, 3, 4, 5]; assert!(vec.feq(&[1, 2, 3, 4, 5])); ```
The benchmarking results for comparison of two &[u8]
with a size of 256:
running 2 tests
test fast_compare ... bench: 13 ns/iter (+/- 8) = 19692 MB/s
test slice_compare ... bench: 34 ns/iter (+/- 4) = 7529 MB/s
You want to contribute to this project? Wow, thanks! So please just fork it and send me a pull request.