11 references to _Lim
Microsoft.ML.Transforms (11)
Expression\LambdaBinder.cs (10)
1185if (extCur <= ExprTypeKind.Error || extCur >= ExprTypeKind._Lim) 1206if (kindRet <= ExprTypeKind.Error || kindRet >= ExprTypeKind._Lim) 1471Contracts.Assert(ExprTypeKind.Error <= src && src < ExprTypeKind._Lim); 1472Contracts.Assert(ExprTypeKind.Error < dst && dst < ExprTypeKind._Lim); 1775private static readonly Cmp[] _fnEqual = new Cmp[(int)ExprTypeKind._Lim] 1789private static readonly Cmp[] _fnNotEqual = new Cmp[(int)ExprTypeKind._Lim] 1803private static readonly Cmp[] _fnLess = new Cmp[(int)ExprTypeKind._Lim] 1817private static readonly Cmp[] _fnLessEqual = new Cmp[(int)ExprTypeKind._Lim] 1831private static readonly Cmp[] _fnGreater = new Cmp[(int)ExprTypeKind._Lim] 1845private static readonly Cmp[] _fnGreaterEqual = new Cmp[(int)ExprTypeKind._Lim]
Expression\Node.cs (1)
283public bool HasType { get { return ExprTypeKind.Error < ExprType && ExprType < ExprTypeKind._Lim; } }