645a817685
Go 1.22 introduced a new [for-range](https://go.dev/ref/spec#For_range) construct that looks a tad better than the usual `for i := 0; i < N; i++` construct. I also tool the liberty of replacing some `for i := 0; i < len(myitemsarray); i++ { … myitemsarray[i] …}` with `for item := range myitemsarray` when `myitemsarray` contains only pointers. |
||
---|---|---|
.. | ||
category_test.go | ||
endpoint_test.go | ||
entry_test.go | ||
feed_test.go | ||
import_export_test.go | ||
subscription_test.go | ||
tests.go | ||
user_test.go | ||
version_test.go |