[][src]Struct suffix_array::SuffixArray

pub struct SuffixArray<'s> { /* fields omitted */ }

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]

impl<'s> From<SuffixArray<'s>> for 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]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

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

The type returned in the event of a conversion error.