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