1
0
Fork 0
mirror of https://github.com/beefytech/Beef.git synced 2025-06-10 12:32:20 +02:00

Fix indexing generic params

This commit is contained in:
Brian Fiete 2024-11-02 07:35:05 -04:00
parent 56c41ba302
commit c53ef1c346
2 changed files with 47 additions and 10 deletions

View file

@ -1,4 +1,10 @@
using System;
using System.Collections;
public interface IIndexable<T>
{
T this[int index] { get; set; }
}
namespace Tests
{
@ -87,6 +93,28 @@ namespace Tests
public Span<int> this[Range r] => default;
}
class IndexTest : IIndexable<float>
{
public float this[int index]
{
get
{
return index;
}
set
{
}
}
}
public static float Get<T>(T indexable) where T : IIndexable<float>
{
float f = indexable[4];
return f;
}
[Test]
public static void TestBasics()
{
@ -116,6 +144,9 @@ namespace Tests
Bar bar = scope .();
Test.Assert(bar[3] == 9);
IndexTest it = scope .();
Test.Assert(it[5] == 5.0f);
}
}
}