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