7 references to Mul
Microsoft.ML.Transforms (7)
Expression\LambdaParser.cs (6)
470if (precMin > Precedence.Mul) 472node = new BinaryOpNode(TokMove(), BinaryOp.Mul, node, ParseExpr(Precedence.Mul + 1)); 475if (precMin > Precedence.Mul) 477node = new BinaryOpNode(TokMove(), BinaryOp.Div, node, ParseExpr(Precedence.Mul + 1)); 480if (precMin > Precedence.Mul) 482node = new BinaryOpNode(TokMove(), BinaryOp.Mod, node, ParseExpr(Precedence.Mul + 1));
Expression\Printer.cs (1)
119return Precedence.Mul;