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

IsSignedNumber() public method

public IsSignedNumber ( IType type ) : bool
type IType
return bool
        public bool IsSignedNumber(IType type)
        {
            return IsNumber(type) && !IsUnsignedInteger(type);
        }
TypeSystemServices