fuzzy_match 0.2.1

A crate for fuzzy finding items in sets, based on the Ruby fuzzy_find gem.
Documentation
1
2
3
4
5
//! Crate-wide utility functions.

pub(crate) fn round_score_decimal(val: f32) -> f32 {
    (val * 100_000f32).round() / 100_000f32
}