System.Linq.Expressions.Expression.IsSimpleShift C# (CSharp) Method

IsSimpleShift() private static method

private static IsSimpleShift ( Type left, Type right ) : bool
left Type
right Type
return bool
        private static bool IsSimpleShift(Type left, Type right)
        {
            return left.IsInteger()
                && right.GetNonNullableType() == typeof(int);
        }
Expression