Boo.Lang.Compiler.TypeSystem.TypeSystemServices.IsIntegerOrBool C# (CSharp) Méthode

IsIntegerOrBool() public méthode

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