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

◆ IsSpace()

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

Definition at line 1823 of file RegexParser.cs.

1824 {
1825 if (ch <= ' ')
1826 {
1827 return Category[ch] == 2;
1828 }
1829 return false;
1830 }
static ReadOnlySpan< byte > Category

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

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