1
0
Fork 0
mirror of https://github.com/beefytech/Beef.git synced 2025-06-19 16:40:26 +02:00

Removed System.Tuple type

This commit is contained in:
Brian Fiete 2020-09-06 05:27:37 -07:00
parent e37e1ac687
commit d11b09dd07
6 changed files with 316 additions and 64 deletions

View file

@ -1,27 +0,0 @@
namespace System
{
struct Tuple<T1, T2> : IHashable where T1 : IHashable where T2 : IHashable
{
public T1 Item1;
public T2 Item2;
public this()
{
Item1 = default(T1);
Item2 = default(T2);
}
public this(T1 item1, T2 item2)
{
Item1 = item1;
Item2 = item2;
}
public int GetHashCode()
{
int h1 = Item1.GetHashCode();
int h2 = Item2.GetHashCode();
return (((h1 << 5) + h1) ^ h2);
}
}
}