simstring_rust 0.1.0

A native Rust implementation of the SimString algorithm
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
use crate::SimStringDB;
use crate::SimilarityMeasure;

pub fn search<M, DB>(
    _measure: &M,
    _db: &DB,
    _query: &str,
    _alpha: f64,
    _ranked: bool,
) -> Vec<(String, f64)>
where
    M: SimilarityMeasure,
    DB: SimStringDB,
{
    todo!()
}