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

IsIntegerOrBool() public method

public IsIntegerOrBool ( IType type ) : bool
type IType
return bool
        public bool IsIntegerOrBool(IType type)
        {
            return BoolType == type || IsIntegerNumber(type);
        }
TypeSystemServices