1 Star 1 Fork 0

zhuyuns/basic

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
misc.go 699 Bytes
一键复制 编辑 原始数据 按行查看 历史
wing 提交于 2021-12-18 11:42 . 添加基础包
package helper
import "math"
// In32 检查数字是否在, a数组中
func In32(a []int32, i int32) bool {
for _, item := range a {
if item == i {
return true
}
}
return false
}
func In64(a []int64, i int64) bool {
for _, item := range a {
if item == i {
return true
}
}
return false
}
func Int32ToInt64(a []int32) []int64 {
data := make([]int64, len(a))
for i, v := range a {
data[i] = int64(v)
}
return data
}
// 四舍五入
func Round(f float64, prec int) float64 {
pow10N := math.Pow10(prec)
return math.Floor(f*pow10N+0.5) / pow10N
}
func MaxInt32(i, j int32) int32 {
if i > j {
return i
}
return j
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Go
1
https://gitee.com/zhuyuns/basic.git
git@gitee.com:zhuyuns/basic.git
zhuyuns
basic
basic
v1.0.4

搜索帮助