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

Added 'concrete' constraint

This commit is contained in:
Brian Fiete 2021-01-13 09:24:15 -08:00
parent 51ed3df320
commit e3f51e39ed
12 changed files with 90 additions and 72 deletions

View file

@ -28,7 +28,7 @@ namespace System.Collections
Result<T*> GetNextRef() mut;
}
concrete interface IEnumerable<T>
interface IEnumerable<T>
{
concrete IEnumerator<T> GetEnumerator();
}