代码拉取完成,页面将自动刷新
package stat
import "gitee.com/quant1x/vek"
// All 全部为真
func All[T Number | ~bool](x []T) bool {
switch vs := any(x).(type) {
case []bool:
return vek.All(vs)
case []int8:
return __all_go(vs)
case []uint8:
return __all_go(vs)
case []int16:
return __all_go(vs)
case []uint16:
return __all_go(vs)
case []int32:
return __all_go(vs)
case []uint32:
return __all_go(vs)
case []int64:
return __all_go(vs)
case []uint64:
return __all_go(vs)
case []int:
return __all_go(vs)
case []uint:
return __all_go(vs)
case []uintptr:
return __all_go(vs)
case []float32:
return __all_go(vs)
case []float64:
return __all_go(vs)
}
return false
}
func __all_go[T Number](x []T) bool {
for i := 0; i < len(x); i++ {
if x[i] == 0 {
return false
}
}
return true
}
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。