1
0
Fork 0
mirror of https://github.com/beefytech/Beef.git synced 2025-06-30 05:15:59 +02:00

Added IEnumerable<T> conformance

This commit is contained in:
Brian Fiete 2020-12-26 17:37:26 -08:00
parent 91a5ef67e5
commit 3993f657e1

View file

@ -3,7 +3,7 @@ using System.Collections;
namespace System
{
struct Span<T>
struct Span<T> : IEnumerable<T>
{
protected T* mPtr;
protected int mLength;