1
0
Fork 0
mirror of https://git.sr.ht/~ashkeel/strimertul synced 2024-09-18 01:50:50 +00:00
strimertul/utils/map.go

14 lines
244 B
Go

package utils
import "git.sr.ht/~hamcha/containers/sync"
func MergeMap[T comparable, V any](a, b map[T]V) {
for key, value := range b {
a[key] = value
}
}
func MergeSyncMap[T comparable, V any](a, b *sync.Map[T, V]) {
b.Set(a.Copy())
}