-
Notifications
You must be signed in to change notification settings - Fork 36
M_CodeJam_Collections_SuffixTreeBase_StartingWith
Andrew Koryavchenko edited this page Jul 4, 2017
·
2 revisions
Enumerates all suffixes starting with the given prefix
Namespace: CodeJam.Collections
Assembly: CodeJam (in CodeJam.dll) Version: 1.1.0.0 (1.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