-
Notifications
You must be signed in to change notification settings - Fork 35
M_CodeJam_Collections_SuffixTreeBase_StartingWith
Andrew Koryavchenko edited this page Jun 17, 2018
·
2 revisions
Enumerates all suffixes starting with the given prefix
Namespace: CodeJam.Collections
Assembly: CodeJam (in CodeJam.dll) Version: 2.1.0.0
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>
- prefix
- Type: System.String
The prefix to find
Type: IEnumerable(Suffix)
The enumeration of all suffixes with the given prefix in lexicographical order