onoma 0.0.4

A fast, language-agnostic semantic symbol indexer and typo-resistant fuzzy finder, enabling real-time search across virtually unlimited code symbols without the need for language servers.
Documentation
1
2
3
4
5
6
7
8
//! A language-agnostic set of models to represent a symbol, which has previously been indexed, and now has been
//! resolved as part of a query.

mod resolved_symbol;
mod score;

pub use resolved_symbol::*;
pub use score::*;