Boo.Lang.Compiler.TypeSystem.TypeSystemServices.IsIntegerNumber C# (CSharp) Method

IsIntegerNumber() public method

public IsIntegerNumber ( IType type ) : bool
type IType
return bool
        public bool IsIntegerNumber(IType type)
        {
            return IsSignedInteger(type)
                || IsUnsignedInteger(type);
        }
TypeSystemServices