1
0
Fork 0
mirror of https://github.com/beefytech/Beef.git synced 2025-06-12 21:34:11 +02:00

Update IEnumerator.bf

This commit is contained in:
ExMatics HydrogenC 2020-05-01 14:44:18 +08:00 committed by GitHub
parent 6512937a84
commit ea143611ab
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -5,6 +5,7 @@ namespace System.Collections
interface IEnumerator<T> interface IEnumerator<T>
{ {
Result<T> GetNext() mut; Result<T> GetNext() mut;
T Current { get; };
} }
interface IResettable interface IResettable