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

IsUnsignedInteger() private method

private IsUnsignedInteger ( IType type ) : bool
type IType
return bool
        private bool IsUnsignedInteger(IType type)
        {
            return type == UShortType
                || type == UIntType
                || type == ULongType
                || type == ByteType;
        }
TypeSystemServices