Tokenizer

fun interface Tokenizer<D, T>

A tokenizer splits a piece of data D into a list of T tokens.

Inheritors

Functions

Link copied to clipboard
abstract fun tokenize(data: D): List<T>