mirror of
https://github.com/duke-git/lancet.git
synced 2026-02-17 19:22:28 +08:00
refactor: update param name in AppendIfAbsent
This commit is contained in:
@@ -853,9 +853,9 @@ func ToSlice[T any](value ...T) []T {
|
|||||||
}
|
}
|
||||||
|
|
||||||
// AppendIfAbsent only absent append the value
|
// AppendIfAbsent only absent append the value
|
||||||
func AppendIfAbsent[T comparable](slices []T, value T) []T {
|
func AppendIfAbsent[T comparable](slice []T, value T) []T {
|
||||||
if !Contain(slices, value) {
|
if !Contain(slice, value) {
|
||||||
slices = append(slices, value)
|
slice = append(slice, value)
|
||||||
}
|
}
|
||||||
return slices
|
return slice
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user