1
0
Fork 0
mirror of https://github.com/beefytech/Beef.git synced 2025-06-18 08:06:04 +02:00

Missing interfaces

Add the missing interfaces these types already support.
This commit is contained in:
Damian Day 2020-03-20 22:06:09 +00:00
parent 9a8beec7d9
commit 176c03832f
2 changed files with 2 additions and 2 deletions

View file

@ -2,7 +2,7 @@ using System.Globalization;
namespace System namespace System
{ {
struct Int64 : int64, IInteger, ISigned, IFormattable, IHashable, IOpComparable, IIsNaN, IOpNegatable struct Int64 : int64, IInteger, ISigned, IFormattable, IHashable, IOpComparable, IIsNaN, IOpNegatable, IOpAddable, IOpSubtractable
{ {
public enum ParseError public enum ParseError
{ {

View file

@ -2,7 +2,7 @@ using System.Globalization;
namespace System namespace System
{ {
struct UInt64 : uint64, IInteger, IUnsigned, IHashable, IOpComparable, IIsNaN, IFormattable struct UInt64 : uint64, IInteger, IUnsigned, IHashable, IOpComparable, IIsNaN, IFormattable, IOpAddable, IOpSubtractable
{ {
public const uint64 MaxValue = 0xFFFFFFFFFFFFFFFFUL; public const uint64 MaxValue = 0xFFFFFFFFFFFFFFFFUL;
public const uint64 MinValue = 0; public const uint64 MinValue = 0;