mirror of
https://github.com/SagerNet/sing.git
synced 2025-04-04 20:37:40 +03:00
Fix minBy
This commit is contained in:
parent
735372ab3c
commit
13f394e202
1 changed files with 2 additions and 0 deletions
|
@ -194,6 +194,7 @@ func MinBy[T any, C constraints.Ordered](arr []T, block func(it T) C) T {
|
|||
return min
|
||||
}
|
||||
min = arr[0]
|
||||
minValue = block(min)
|
||||
for i := 1; i < len(arr); i++ {
|
||||
item := arr[i]
|
||||
value := block(item)
|
||||
|
@ -212,6 +213,7 @@ func MaxBy[T any, C constraints.Ordered](arr []T, block func(it T) C) T {
|
|||
return max
|
||||
}
|
||||
max = arr[0]
|
||||
maxValue = block(max)
|
||||
for i := 1; i < len(arr); i++ {
|
||||
item := arr[i]
|
||||
value := block(item)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue