5 references to IsHexDigit
Microsoft.ML.Transforms (5)
Expression\LexCharUtils.cs (1)
224
Contracts.Assert(
IsHexDigit
(ch));
Expression\Lexer.cs (4)
259
if (ChCur == '0' && (ChPeek(1) == 'x' || ChPeek(1) == 'X') && LexCharUtils.
IsHexDigit
(ChPeek(2)))
316
Contracts.Assert(LexCharUtils.
IsHexDigit
(ChCur));
329
} while (LexCharUtils.
IsHexDigit
(ChNext()));
618
if (!LexCharUtils.
IsHexDigit
(ChCur))