Skip to content

M_CodeJam_Collections_SuffixTreeBase_StartingWith

Andrew Koryavchenko edited this page Jun 17, 2018 · 2 revisions

SuffixTreeBase.StartingWith Method

Enumerates all suffixes starting with the given prefix

Namespace: CodeJam.Collections
Assembly: CodeJam (in CodeJam.dll) Version: 2.1.0.0

Syntax

C#

public IEnumerable<Suffix> StartingWith(
	string prefix
)

VB

Public Function StartingWith ( 
	prefix As String
) As IEnumerable(Of Suffix)

F#

member StartingWith : 
        prefix : string -> IEnumerable<Suffix> 

Parameters

 

prefix
Type: System.String
The prefix to find

Return Value

Type: IEnumerable(Suffix)
The enumeration of all suffixes with the given prefix in lexicographical order

See Also

Reference

SuffixTreeBase Class
CodeJam.Collections Namespace

Clone this wiki locally