sudachi::analysis::mlist

Struct MorphemeList

source
pub struct MorphemeList<T> { /* private fields */ }

Implementations§

source§

impl<T: DictionaryAccess> MorphemeList<T>

source

pub fn empty(dict: T) -> Self

Returns an empty morpheme list

source

pub fn from_components( dict: T, input: InputBuffer, path: Vec<ResultNode>, subset: InfoSubset, ) -> Self

Creates MorphemeList from components

source

pub fn collect_results<U: DictionaryAccess>( &mut self, analyzer: &mut StatefulTokenizer<U>, ) -> SudachiResult<()>

source

pub fn split_into( &self, mode: Mode, index: usize, out: &mut Self, ) -> SudachiResult<bool>

Splits morphemes and writes them into the resulting list The resulting list is not cleared before that Returns true if split produced more than two elements

source

pub fn clear(&mut self)

Clears morphemes from analysis result

source

pub fn len(&self) -> usize

source

pub fn is_empty(&self) -> bool

source

pub fn get(&self, idx: usize) -> Morpheme<'_, T>

source

pub fn surface(&self) -> Ref<'_, str>

source

pub fn iter(&self) -> MorphemeIter<'_, T>

source

pub fn get_internal_cost(&self) -> i32

Gets the whole cost of the path

source

pub fn dict(&self) -> &T

source

pub fn subset(&self) -> InfoSubset

source

pub fn copy_slice(&self, start: usize, end: usize, out: &mut Self)

source

pub fn lookup( &mut self, query: &str, subset: InfoSubset, ) -> SudachiResult<usize>

source§

impl<T: DictionaryAccess + Clone> MorphemeList<T>

source

pub fn empty_clone(&self) -> Self

source

pub fn split(&self, mode: Mode, index: usize) -> SudachiResult<MorphemeList<T>>

👎Deprecated since 0.6.1: use split_into

Returns a new morpheme list splitting the morpheme with a given mode. Returns an empty list if there was no splits

Auto Trait Implementations§

§

impl<T> Freeze for MorphemeList<T>
where T: Freeze,

§

impl<T> !RefUnwindSafe for MorphemeList<T>

§

impl<T> !Send for MorphemeList<T>

§

impl<T> !Sync for MorphemeList<T>

§

impl<T> Unpin for MorphemeList<T>
where T: Unpin,

§

impl<T> !UnwindSafe for MorphemeList<T>

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, 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.