Boo.Lang.Compiler.TypeSystem.TypeSystemServices.IsIntegerOrBool C# (CSharp) 메소드

IsIntegerOrBool() 공개 메소드

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