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

◆ IsSpecial()

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

Definition at line 1756 of file RegexParser.cs.

1757 {
1758 if (ch <= '|')
1759 {
1760 return Category[ch] >= 4;
1761 }
1762 return false;
1763 }
static ReadOnlySpan< byte > Category

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

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