Skip to content

issue9/conv

Repository files navigation

conv Go codecov license PkgGoDev Go version

conv包提供了各个类型之间的转换:

conv.MustIntOf[int]("123", 0)  // 返回 123 的数值
conv.MustString(123, "")// 返回字符串 123
conv.Int("123", 0)      // 返回 123 数值和 nil 的 error 接口

conv.SliceOf[int]([]string{"1", "2", "3"}) // 返回 []int{1, 2, 3}

安装

go get github.com/issue9/conv

版权

本项目采用MIT开源授权许可证,完整的授权说明可在LICENSE文件中找到。