1 override of AsExpr
Microsoft.ML.Transforms (1)
Expression\Node.cs (1)
271public override ExprNode AsExpr { get { return this; } }
16 references to AsExpr
Microsoft.ML.Transforms (16)
Expression\CodeGen.cs (7)
798GenRaw(arg = items[0].AsExpr); 800GenRaw(arg = items[1].AsExpr); 869ExprNode arg = items[0].AsExpr; 872GenRaw(arg = items[0].AsExpr); 881arg = items[i].AsExpr; 914ExprNode arg = items[0].AsExpr; 923arg = items[i].AsExpr;
Expression\LambdaBinder.cs (9)
980arg = items[i].AsExpr; 1003arg = items[i].AsExpr; 1053if (lim < 2 && (value = items[1 - lim].AsExpr.ExprValue) != null && !cmpLax(value, value).HasValue) 1067arg = items[0].AsExpr; 1079arg = items[i].AsExpr; 1100arg = items[i].AsExpr; 1107var arg2 = items[j].AsExpr; 1300var kinds = node.Args.Items.Select(item => item.AsExpr.ExprType).ToArray(); 1415args[i] = Convert(node.Args.Items[i].AsExpr, best.Kinds[Math.Min(i, ivMax)]);