1 Star 5 Fork 0

A-涛/gotool

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
slice.go 969 Bytes
一键复制 编辑 原始数据 按行查看 历史
A-涛 提交于 2022-05-23 09:41 . 重新分配
package base
// GetPageSliceIndex 根据page, size对切片进行分页, l 为目标切片的长度
func GetPageSliceIndex(page, size int32, l int) (startIndex, endIndex int32) {
if l == 0 {
return
}
if page <= 0 {
page = 1
}
if size == 0 {
size = 10
}
lInt32 := int32(l)
startIndex = (page - 1) * size
if startIndex > lInt32 {
startIndex = lInt32
}
endIndex = startIndex + size
if endIndex > lInt32 {
endIndex = lInt32
}
return
}
// DistinctInt32Ids 去重
func DistinctInt32Ids(ids []int32) (res []int32) {
hash := map[int32]struct{}{}
for _, v := range ids {
if _, ok := hash[v]; ok {
continue
}
hash[v] = struct{}{}
res = append(res, v)
}
return
}
// DistinctIds 去重
func DistinctIds(ids []string) []string {
tmp := make(map[string]struct{}, len(ids))
res := make([]string, 0, len(ids))
for _, id := range ids {
if _, ok := tmp[id]; !ok {
tmp[id] = struct{}{}
res = append(res, id)
}
}
return res
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Go
1
https://gitee.com/xuesongtao/gotool.git
git@gitee.com:xuesongtao/gotool.git
xuesongtao
gotool
gotool
v1.1.4

搜索帮助