More micro-optimizations

This commit is contained in:
Deluan 2024-06-06 07:09:30 -04:00
parent 939f3eee97
commit 0f7d6b5bc4
3 changed files with 19 additions and 25 deletions

View file

@ -27,11 +27,8 @@ func ParseIndexGroups(spec string) IndexGroups {
for _, g := range split {
sub := indexGroupsRx.FindStringSubmatch(g)
if len(sub) > 0 {
i := 0
chars := strings.Split(sub[2], "")
for _, c := range chars {
parsed[c] = sub[1]
i++
for _, c := range sub[2] {
parsed[string(c)] = sub[1]
}
} else {
parsed[g] = g