代码拉取完成,页面将自动刷新
package slicex
func SliceExclude[T comparable](source, exclude []T) []T {
r := make([]T, 0)
excludeMap := make(map[T]struct{})
for _, e := range exclude {
excludeMap[e] = struct{}{}
}
for _, e := range source {
if _, ok := excludeMap[e]; !ok {
r = append(r, e)
}
}
return r
}
func Unique[T comparable](source []T) []T {
r := make([]T, 0)
uniqueMap := make(map[T]struct{})
for _, e := range source {
if _, ok := uniqueMap[e]; !ok {
r = append(r, e)
uniqueMap[e] = struct{}{}
}
}
return r
}
func Contains[T comparable](source []T, target T) bool {
if len(source) == 0 {
return false
}
var r bool
for _, e := range source {
if e == target {
r = true
break
}
}
return r
}
func New[T any]() []T {
r := make([]T, 0)
return r
}
/*
GroupBy
将slice按照key分组
*/
func GroupBy[K comparable, V any, T []V](keyFunc func(V) K, source T) map[K]T {
m := make(map[K]T)
for _, e := range source {
key := keyFunc(e)
if _, ok := m[key]; ok {
m[key] = append(m[key], e)
} else {
m[key] = T{e}
}
}
return m
}
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。