Type Definition xxcalc::TokenList [] [src]

type TokenList = Vec<(usize, Token)>;

List of tokens with their position.

Tokens are represented as space-efficient continous vector of tuples consisting of position in a input string and a corresponding Token.