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

◆ IsWhiteSpace()

bool System.Data.ExpressionParser.IsWhiteSpace ( char ch)
inlineprivate

Definition at line 841 of file ExpressionParser.cs.

842 {
843 if (ch <= ' ')
844 {
845 return ch != '\0';
846 }
847 return false;
848 }

References System.ch.

Referenced by System.Data.ExpressionParser.ScanWhite().