Home
last modified time | relevance | path

Searched refs:USentenceBoundIndices (Results 1 – 2 of 2) sorted by relevance

/external/rust/crates/unicode-segmentation/src/
Dlib.rs69 pub use sentence::{USentenceBoundIndices, USentenceBounds, UnicodeSentences};
259 fn split_sentence_bound_indices<'a>(&'a self) -> USentenceBoundIndices<'a>; in split_sentence_bound_indices()
304 fn split_sentence_bound_indices(&self) -> USentenceBoundIndices { in split_sentence_bound_indices() argument
Dsentence.rs326 pub struct USentenceBoundIndices<'a> { struct
340 pub fn new_sentence_bound_indices<'a>(source: &'a str) -> USentenceBoundIndices<'a> { in new_sentence_bound_indices() argument
341 USentenceBoundIndices { in new_sentence_bound_indices()
401 impl<'a> Iterator for USentenceBoundIndices<'a> { implementation