Tokens is a simple list of tokens.
| 11 | |
| 12 | // Tokens is a simple list of tokens. |
| 13 | type Tokens []uint32 |
| 14 | |
| 15 | func (t Tokens) Len() int { return len(t) } |
| 16 | func (t Tokens) Swap(i, j int) { t[i], t[j] = t[j], t[i] } |
no outgoing calls
no test coverage detected