qamp/Qrakhen.Qamp.Core/Collections/Abstractions/ISteppable.cs

7 lines
133 B
C#

namespace Qrakhen.Qamp.Core.Collections.Abstractions;
public interface ISteppable<out T>
{
bool Done { get; }
T Next();
}