mirror of
https://github.com/beefytech/Beef.git
synced 2025-06-21 01:18:02 +02:00
Added INumeric
This commit is contained in:
parent
0b71897461
commit
f874535a13
3 changed files with 20 additions and 5 deletions
|
@ -18,11 +18,16 @@ namespace System
|
|||
}
|
||||
}
|
||||
|
||||
interface IInteger
|
||||
interface INumeric
|
||||
{
|
||||
static Self operator+(Self lhs, Self rhs);
|
||||
}
|
||||
|
||||
interface IInteger : INumeric
|
||||
{
|
||||
}
|
||||
|
||||
interface IUnsigned
|
||||
interface IUnsigned : INumeric
|
||||
{
|
||||
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue