Files
pork/parser/src/main/kotlin/gay/pizza/pork/parser/PeekableSource.kt

8 lines
119 B
Kotlin

package gay.pizza.pork.parser
interface PeekableSource<T> {
val currentIndex: Int
fun next(): T
fun peek(): T
}