milvus/pkg/common/map.go
jaime c9d0c157ec
Move some modules from internal to public package (#22572)
Signed-off-by: jaime <yun.zhang@zilliz.com>
2023-04-06 19:14:32 +08:00

25 lines
369 B
Go

package common
import "reflect"
type Str2Str map[string]string
func (m Str2Str) Clone() Str2Str {
if m == nil {
return nil
}
clone := make(Str2Str)
for key, value := range m {
clone[key] = value
}
return clone
}
func (m Str2Str) Equal(other Str2Str) bool {
return reflect.DeepEqual(m, other)
}
func CloneStr2Str(m Str2Str) Str2Str {
return m.Clone()
}