fzy-rs 0.1.0

fzy scoring algorithm as a Rust crate
Documentation
1
2
3
4
5
6
7
8
# fzy-rs

```rust
use fzy_rs::{has_match, score}

let matches = has_match(b"fbb", b"foo/bar/baz");
let score = score(b"fbb", b"foo/bar/baz");
```