chore: bump deps
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
2025-08-12 07:04:57 +02:00
committed by decentral1se
parent 157d131b37
commit 56a68dfa91
981 changed files with 36486 additions and 39650 deletions

View File

@ -78,7 +78,7 @@ func Subparams(params []int, i int) []int {
// Count the number of parameters before the given parameter index.
var count int
var j int
for j = 0; j < len(params); j++ {
for j = range params {
if count == i {
break
}
@ -116,7 +116,7 @@ func Subparams(params []int, i int) []int {
// sub-parameters.
func Len(params []int) int {
var n int
for i := 0; i < len(params); i++ {
for i := range params {
if !HasMore(params, i) {
n++
}
@ -128,7 +128,7 @@ func Len(params []int) int {
// function for each parameter.
// The function should return false to stop the iteration.
func Range(params []int, fn func(i int, param int, hasMore bool) bool) {
for i := 0; i < len(params); i++ {
for i := range params {
if !fn(i, Param(params, i), HasMore(params, i)) {
break
}