TrieDictionary

Struct TrieDictionary 

Source
pub struct TrieDictionary<D: Dictionary> { /* private fields */ }
Expand description

A Dictionary optimized for pre- and postfix search. Wraps another dictionary to implement other operations.

Implementations§

Source§

impl TrieDictionary<Arc<FstDictionary>>

Source

pub fn curated() -> Arc<Self>

Create a dictionary from the curated dictionary included in the Harper binary.

Source§

impl<D: Dictionary> TrieDictionary<D>

Source

pub fn new(inner: D) -> Self

Trait Implementations§

Source§

impl<D: Dictionary> Dictionary for TrieDictionary<D>

Source§

fn contains_word(&self, word: &[char]) -> bool

Check if the dictionary contains any capitalization of a given word.
Source§

fn contains_word_str(&self, word: &str) -> bool

Check if the dictionary contains any capitalization of a given word.
Source§

fn contains_exact_word(&self, word: &[char]) -> bool

Check if the dictionary contains the exact capitalization of a given word.
Source§

fn contains_exact_word_str(&self, word: &str) -> bool

Check if the dictionary contains the exact capitalization of a given word.
Source§

fn fuzzy_match( &self, word: &[char], max_distance: u8, max_results: usize, ) -> Vec<FuzzyMatchResult<'_>>

Gets best fuzzy match from dictionary
Source§

fn fuzzy_match_str( &self, word: &str, max_distance: u8, max_results: usize, ) -> Vec<FuzzyMatchResult<'_>>

Gets best fuzzy match from dictionary
Source§

fn get_correct_capitalization_of(&self, word: &[char]) -> Option<&[char]>

Source§

fn get_word_metadata(&self, word: &[char]) -> Option<Cow<'_, DictWordMetadata>>

Get the associated DictWordMetadata for any capitalization of a given word.
Source§

fn get_word_metadata_str(&self, word: &str) -> Option<Cow<'_, DictWordMetadata>>

Get the associated DictWordMetadata for any capitalization of a given word. If the word isn’t in the dictionary, the resulting metadata will be empty.
Source§

fn words_iter(&self) -> Box<dyn Iterator<Item = &[char]> + Send + '_>

Iterate over the words in the dictionary.
Source§

fn word_count(&self) -> usize

The number of words in the dictionary.
Source§

fn get_word_from_id(&self, id: &WordId) -> Option<&[char]>

Returns the correct capitalization of the word with the given ID.
Source§

fn find_words_with_prefix(&self, prefix: &[char]) -> Vec<Cow<'_, [char]>>

Look for words with a specific prefix
Source§

fn find_words_with_common_prefix(&self, word: &[char]) -> Vec<Cow<'_, [char]>>

Look for words that share a prefix with the provided word

Auto Trait Implementations§

§

impl<D> Freeze for TrieDictionary<D>
where D: Freeze,

§

impl<D> RefUnwindSafe for TrieDictionary<D>
where D: RefUnwindSafe,

§

impl<D> Send for TrieDictionary<D>

§

impl<D> Sync for TrieDictionary<D>

§

impl<D> Unpin for TrieDictionary<D>
where D: Unpin,

§

impl<D> UnwindSafe for TrieDictionary<D>
where D: UnwindSafe,

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T> IntoEither for T

Source§

fn into_either(self, into_left: bool) -> Either<Self, Self>

Converts self into a Left variant of Either<Self, Self> if into_left is true. Converts self into a Right variant of Either<Self, Self> otherwise. Read more
Source§

fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
where F: FnOnce(&Self) -> bool,

Converts self into a Left variant of Either<Self, Self> if into_left(&self) returns true. Converts self into a Right variant of Either<Self, Self> otherwise. Read more
Source§

impl<T> Pointable for T

Source§

const ALIGN: usize

The alignment of pointer.
Source§

type Init = T

The type for initializers.
Source§

unsafe fn init(init: <T as Pointable>::Init) -> usize

Initializes a with the given initializer. Read more
Source§

unsafe fn deref<'a>(ptr: usize) -> &'a T

Dereferences the given pointer. Read more
Source§

unsafe fn deref_mut<'a>(ptr: usize) -> &'a mut T

Mutably dereferences the given pointer. Read more
Source§

unsafe fn drop(ptr: usize)

Drops the object pointed to by the given pointer. Read more
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
Source§

impl<V, T> VZip<V> for T
where V: MultiLane<T>,

Source§

fn vzip(self) -> V

Source§

impl<T> ErasedDestructor for T
where T: 'static,

Source§

impl<T> LSend for T
where T: ?Sized,