Added tokenizer benchmark

This commit is contained in:
2024-06-26 18:49:03 +02:00
parent 49b75dbda4
commit 3268f7a7ee
3 changed files with 57 additions and 1 deletions

View File

@ -144,5 +144,10 @@ func isNumber(c byte) bool {
}
func isOperator(c byte) bool {
return c == '=' || c == ':' || c == '+' || c == '-' || c == '*' || c == '/' || c == '<' || c == '>' || c == '!' || c == '&' || c == '|' || c == '^' || c == '%' || c == '.'
switch c {
case '=', ':', '.', '+', '-', '*', '/', '<', '>', '&', '|', '^', '%', '!':
return true
default:
return false
}
}