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

11 lines
259 B
C#

using Qrakhen.Qamp.Core.Tokenization;
namespace Qrakhen.Qamp.Core.Collections.Abstractions;
public interface IReader<out T>
{
TokenPosition CurrentPosition { get; }
bool Done { get; }
T NextToken(bool includeCompilationIrrelevant = false);
}