[][src]Trait sacabase::StringIndex

pub trait StringIndex<'a> {
    fn longest_substring_match(
        &self,
        needle: &[u8]
    ) -> LongestCommonSubstring<'a>; }

Required methods

fn longest_substring_match(&self, needle: &[u8]) -> LongestCommonSubstring<'a>

Returns the longest substring that matches needle in text

Loading content...

Implementors

impl<'a, Index> StringIndex<'a> for SuffixArray<'a, Index> where
    Index: ToPrimitive
[src]

Loading content...