9 references to IsDigit
Microsoft.ML.Transforms (9)
Expression\Lexer.cs (9)
251
Contracts.Assert(LexCharUtils.
IsDigit
(ChCur) || ChCur == '.');
254
if (ChCur == '.' && !LexCharUtils.
IsDigit
(ChPeek(1)))
268
Contracts.Assert(LexCharUtils.
IsDigit
(ChCur) || ChCur == '.' && LexCharUtils.
IsDigit
(ChPeek(1)));
278
if (fDot || !LexCharUtils.
IsDigit
(ChPeek(1)))
282
else if (!LexCharUtils.
IsDigit
(ChCur))
291
if (LexCharUtils.
IsDigit
(chTmp) || (chTmp == '+' || chTmp == '-') && LexCharUtils.
IsDigit
(ChPeek(2)))
296
while (LexCharUtils.
IsDigit
(chTmp = ChNext()))