Interface ISuffixStructureNode<TEdge, TNode>
The node of a Suffix Structure, linked by edges and forming paths. Represents pattern matching state.
Inherited Members
Namespace: MoreStructures.SuffixStructures
Assembly: MoreStructures.dll
Syntax
public interface ISuffixStructureNode<TEdge, TNode> : IRecImmDictIndexedTreeNode<TEdge, TNode> where TEdge : ISuffixStructureEdge<TEdge, TNode> where TNode : ISuffixStructureNode<TEdge, TNode>
Type Parameters
Name | Description |
---|---|
TEdge | |
TNode |
Properties
| Improve this Doc View SourceStart
The index of the character, the path from the root leading to this leaf starts with. Non-null for leaves only.
Declaration
int? Start { get; }
Property Value
Type | Description |
---|---|
System.Nullable<System.Int32> |