forked from milvus-io/milvus
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathkey_data_pairs.go
More file actions
36 lines (29 loc) · 787 Bytes
/
Copy pathkey_data_pairs.go
File metadata and controls
36 lines (29 loc) · 787 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
package common
import (
"reflect"
"github.com/milvus-io/milvus-proto/go-api/v2/commonpb"
)
type KeyDataPairs []*commonpb.KeyDataPair
func (pairs KeyDataPairs) Clone() KeyDataPairs {
clone := make(KeyDataPairs, 0, len(pairs))
for _, pair := range pairs {
clone = append(clone, &commonpb.KeyDataPair{
Key: pair.GetKey(),
Data: CloneByteSlice(pair.GetData()),
})
}
return clone
}
func (pairs KeyDataPairs) ToMap() map[string][]byte {
ret := make(map[string][]byte)
for _, pair := range pairs {
ret[pair.GetKey()] = CloneByteSlice(pair.GetData())
}
return ret
}
func (pairs KeyDataPairs) Equal(other KeyDataPairs) bool {
return reflect.DeepEqual(pairs.ToMap(), other.ToMap())
}
func CloneKeyDataPairs(pairs KeyDataPairs) KeyDataPairs {
return pairs.Clone()
}