代码拉取完成,页面将自动刷新
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)
lastIndex := lInt32 - 1
startIndex = (page - 1) * size
if startIndex > lastIndex {
startIndex = lInt32
}
endIndex = startIndex + size
if endIndex > lastIndex {
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
}
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。