System.Linq.Dynamic.ExpressionParser.IsSignedIntegralType C# (CSharp) Method

IsSignedIntegralType() private static method

private static IsSignedIntegralType ( Type type ) : bool
type Type
return bool
		private static bool IsSignedIntegralType(Type type)
		{
			return GetNumericTypeKind(type) == 2;
		}
ExpressionParser