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

IsNumberOrBool() public method

public IsNumberOrBool ( IType type ) : bool
type IType
return bool
        public bool IsNumberOrBool(IType type)
        {
            return BoolType == type || IsNumber(type);
        }
TypeSystemServices