Struct suffix_tree::SuffixTree [] [src]

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

A suffix tree.

Currently, most of the interesting operations are defined on the Node type, which can be retrieved from a SuffixTree via its root method.

In the future, those operations may be promoted directly to SuffixTree, in addition to searching for text.

Methods

impl<'s> SuffixTree<'s>
[src]

Get the text that is indexed by this suffix tree.

Retrieve the root node.

Get the path label into node.

Trait Implementations

impl<'s> Debug for SuffixTree<'s>
[src]

Formats the value using the given formatter.