jellyfish 1.0.0

Approximate and phonetic matching of strings.
Documentation
1
2
3
4
5
use smallvec::SmallVec;
// most strings are short, so we can use a fixed-size array
const VEC_SIZE: usize = 32;

pub type FastVec<T> = SmallVec<[T; VEC_SIZE]>;