<@U0ZFBBUBU> How about this, it's a little bit sho...
# announcements
c
@groostav How about this, it's a little bit shorter:
Copy code
fun Sequence<Token>.matches(text: String): Boolean {
    var count = 0
    return all { count < text.length && text[count++] == it.char } && count == text.length
}