代码拉取完成,页面将自动刷新
package num
import (
"gitee.com/quant1x/num/x32"
"gitee.com/quant1x/num/x64"
)
// Max 纵向计算x最大值
func Max[T Number](x []T) T {
return UnaryOperations1[T](x, x32.Max, x64.Max, __go_max[T])
}
func __go_max[T Number | ~string](x []T) T {
maxValue := x[0]
for _, v := range x[1:] {
if v > maxValue {
maxValue = v
}
}
return maxValue
}
func Max2[T BaseType](x []T) T {
var d any
switch vs := any(x).(type) {
case []float32:
d = Max(vs)
case []float64:
d = Max(vs)
case []int:
d = Max(vs)
case []int8:
d = Max(vs)
case []int16:
d = Max(vs)
case []int32:
d = Max(vs)
case []int64:
d = Max(vs)
case []uint:
d = Max(vs)
case []uint8:
d = Max(vs)
case []uint16:
d = Max(vs)
case []uint32:
d = Max(vs)
case []uint64:
d = Max(vs)
case []uintptr:
d = Max(vs)
case []string:
d = __go_max(vs)
default:
// 其它类型原样返回
panic(TypeError(any(x)))
}
return d.(T)
}
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。