mirror of
https://github.com/beefytech/Beef.git
synced 2025-06-30 21:36:00 +02:00
Added IEnumerable<T> conformance
This commit is contained in:
parent
91a5ef67e5
commit
3993f657e1
1 changed files with 1 additions and 1 deletions
|
@ -3,7 +3,7 @@ using System.Collections;
|
||||||
|
|
||||||
namespace System
|
namespace System
|
||||||
{
|
{
|
||||||
struct Span<T>
|
struct Span<T> : IEnumerable<T>
|
||||||
{
|
{
|
||||||
protected T* mPtr;
|
protected T* mPtr;
|
||||||
protected int mLength;
|
protected int mLength;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue