[−][src]Struct suffix_array::SuffixArray
Suffix array for searching byte strings.
Methods
impl<'s> SuffixArray<'s>[src]
pub fn new(s: &'s [u8]) -> Self[src]
pub fn set(&mut self, s: &'s [u8])[src]
pub fn fit(&mut self)[src]
pub fn len(&self) -> usize[src]
Length of the underlying byte string.
pub fn is_empty(&self) -> bool[src]
Test if the underlying byte string is empty.
pub fn into_parts(self) -> (&'s [u8], Vec<u32>)[src]
Take out the suffix array and its corresponding byte string.
pub fn from_parts(s: &'s [u8], sa: Vec<u32>) -> Option<Self>[src]
Compose existed suffix array and its corresponding byte string together, and checks the integrity.
pub unsafe fn unchecked_from_parts(s: &'s [u8], sa: Vec<u32>) -> Self[src]
Compose existed suffix array and its corresponding byte string together without integrity check.
pub fn contains(&self, sub: &[u8]) -> bool[src]
Test if contains given sub-string.
pub fn search_all(&self, sub: &[u8]) -> &[u32][src]
Search for all the unsorted overlapping occurrence of given sub-string.
pub fn search_lcp(&self, pat: &[u8]) -> Range<usize>[src]
Search for one sub-string that has the longest common prefix of the given pattern.
Trait Implementations
impl<'s> AsRef<[u8]> for SuffixArray<'s>[src]
impl<'s> Clone for SuffixArray<'s>[src]
fn clone(&self) -> SuffixArray<'s>[src]
fn clone_from(&mut self, source: &Self)1.0.0[src]
impl<'s> From<SuffixArray<'s>> for Vec<u32>[src]
fn from(sa: SuffixArray<'s>) -> Vec<u32>[src]
Auto Trait Implementations
impl<'s> RefUnwindSafe for SuffixArray<'s>
impl<'s> Send for SuffixArray<'s>
impl<'s> Sync for SuffixArray<'s>
impl<'s> Unpin for SuffixArray<'s>
impl<'s> UnwindSafe for SuffixArray<'s>
Blanket Implementations
impl<T> Any for T where
T: 'static + ?Sized, [src]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized, [src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized, [src]
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T[src]
impl<T> From<T> for T[src]
impl<T, U> Into<U> for T where
U: From<T>, [src]
U: From<T>,
impl<T> ToOwned for T where
T: Clone, [src]
T: Clone,
type Owned = T
The resulting type after obtaining ownership.
fn to_owned(&self) -> T[src]
fn clone_into(&self, target: &mut T)[src]
impl<T, U> TryFrom<U> for T where
U: Into<T>, [src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>, [src]
U: TryFrom<T>,