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:
parent
9a8beec7d9
commit
176c03832f
2 changed files with 2 additions and 2 deletions
|
@ -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
|
||||||
{
|
{
|
||||||
|
|
|
@ -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;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue