1
0
mirror of https://github.com/duke-git/lancet.git synced 2026-02-07 22:22:29 +08:00

refactor: update param name in AppendIfAbsent

This commit is contained in:
dudaodong
2022-07-27 15:45:34 +08:00
parent fc3e94df58
commit 553f63e76b

View File

@@ -853,9 +853,9 @@ func ToSlice[T any](value ...T) []T {
}
// AppendIfAbsent only absent append the value
func AppendIfAbsent[T comparable](slices []T, value T) []T {
if !Contain(slices, value) {
slices = append(slices, value)
func AppendIfAbsent[T comparable](slice []T, value T) []T {
if !Contain(slice, value) {
slice = append(slice, value)
}
return slices
return slice
}