Add compat func for clear

This commit is contained in:
世界 2023-12-09 10:24:45 +08:00
parent afa72012e5
commit 2a2dbf1971
No known key found for this signature in database
GPG key ID: CD109927C34A63C4
2 changed files with 27 additions and 0 deletions

11
common/clear.go Normal file
View file

@ -0,0 +1,11 @@
//go:build go1.21
package common
func ClearArray[T ~[]E, E any](t T) {
clear(t)
}
func ClearMap[T ~map[K]V, K comparable, V any](t T) {
clear(t)
}

16
common/clear_compat.go Normal file
View file

@ -0,0 +1,16 @@
//go:build !go1.21
package common
func ClearArray[T ~[]E, E any](t T) {
var defaultValue E
for i := range t {
t[i] = defaultValue
}
}
func ClearMap[T ~map[K]V, K comparable, V any](t T) {
for k := range t {
delete(t, k)
}
}