Terraria v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches

◆ IsQuantifier()

static bool System.Text.RegularExpressions.RegexParser.IsQuantifier ( char ch)
inlinestaticprivate

Definition at line 1774 of file RegexParser.cs.

1775 {
1776 if (ch <= '{')
1777 {
1778 return Category[ch] >= 5;
1779 }
1780 return false;
1781 }
static ReadOnlySpan< byte > Category

References System.Text.RegularExpressions.RegexParser.Category, and System.ch.

Referenced by System.Text.RegularExpressions.RegexParser.ScanRegex().