mirror of
https://github.com/GayPizzaSpecifications/pork.git
synced 2025-10-01 12:39:37 +00:00
8 lines
119 B
Kotlin
8 lines
119 B
Kotlin
package gay.pizza.pork.parser
|
|
|
|
interface PeekableSource<T> {
|
|
val currentIndex: Int
|
|
fun next(): T
|
|
fun peek(): T
|
|
}
|